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 | "onChange">; export declare type TablePaginationProps = Props & NativeAttrs & Omit, "onChange"> & { css?: CSS; }; declare const TablePagination: React.FC; export default TablePagination;