import React from 'react'; import { MestGenericProps } from "../themes"; import { StyledPaginationVariant } from "./style"; type Props = { boundaryCount?: number; count?: number; defaultPage?: number; onChange?: (page: number) => void; page?: number; siblingCount?: number; jumpCount?: number; simple?: boolean; } & MestGenericProps; type NativeAttrs = Omit, keyof Props>; export type PaginationProps = Props & NativeAttrs & StyledPaginationVariant; declare const Pagination: React.FC; export default Pagination;