interface PaginationProps { currentPage: number; handleNextPage: () => void; handlePreviousPage: () => void; isTotalRecordsKnown?: boolean; recordsPerPage: number; totalPages: number; totalRecords: number; } export declare const Pagination: ({ currentPage, totalRecords, recordsPerPage, totalPages, handleNextPage, handlePreviousPage, isTotalRecordsKnown, }: PaginationProps) => import("react/jsx-runtime").JSX.Element; export {};