import { ComponentProps, FC, ReactNode } from 'react'; import { DeepPartial } from '../../types/types'; import { PaginationButtonProps } from './PaginationButton'; import { PaginationTheme } from './theme'; export interface PaginationProps extends ComponentProps<"nav"> { currentPage: number; onPageChange: (page: number) => void; renderPaginationButton?: (props: PaginationButtonProps) => ReactNode; showIcons?: boolean; theme?: DeepPartial; totalPages: number; outline?: boolean; hasLabels?: boolean; hasRange?: boolean; pageSize?: number; labels?: { next: string; previous: string; of: string; to: string; showing: string; entries: string; }; } export declare const Pagination: FC; //# sourceMappingURL=Pagination.d.ts.map