@actinc/dls
Version:
Design Language System (DLS) for ACT & Encoura front-end projects.
23 lines • 901 B
TypeScript
/**
* Copyright (c) ACT, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import { PopperProps } from '@mui/material';
import { CSSProperties, FC } from 'react';
export interface TablePaginationActionsProps {
count: number;
disabled?: boolean;
noun?: string;
onPageChange: (event: any, page: number) => void;
page: number;
PopperProps?: Partial<PopperProps>;
rowsPerPage: number;
style?: CSSProperties;
tooltipPlacement?: 'bottom' | 'left' | 'right' | 'top' | 'bottom-end' | 'bottom-start' | 'left-end' | 'left-start' | 'right-end' | 'right-start' | 'top-end' | 'top-start';
variant?: 'inverted';
}
export declare const TablePaginationActions: FC<TablePaginationActionsProps>;
export default TablePaginationActions;
//# sourceMappingURL=index.d.ts.map