import React from 'react'; export type PaginationProps = Omit, 'children' | 'onChange'> & { totalPages: number; page?: number; defaultPage?: number; onPageChange?: (page: number) => void; siblingCount?: number; boundaryCount?: number; disabled?: boolean; showControls?: boolean; previousLabel?: string; nextLabel?: string; ariaLabel?: string; className?: string; style?: React.CSSProperties; }; type PaginationComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const Pagination: PaginationComponent; export default Pagination; //# sourceMappingURL=index.d.ts.map