import React from 'react'; import { CSS } from '../theme/stitches.config'; import { PaginationProps } from '../index'; import { NormalAlignment } from '../utils/prop-types'; interface Props { animated?: boolean; rowsPerPage?: number; align?: NormalAlignment; onPageChange?: PaginationProps['onChange']; } declare type NativeAttrs = Omit, keyof Props>; export declare type TablePaginationProps = Props & NativeAttrs & Omit, 'onChage'> & { css?: CSS; }; declare const TablePagination: React.FC; export default TablePagination;