/// export declare type PaginationModel = { total: number; size: number; current: number; pages: number; }; declare type PageTranslation = { first?: string; last?: string; previous?: string; next?: string; total?: string; }; declare type PaginationProps = { className: string; pagination?: PaginationModel; translation?: PageTranslation; onPageChange: (nextPage: number) => void; }; export default function Pagination({ className, pagination, translation, onPageChange, }: PaginationProps): JSX.Element | null; export {};