interface InvoicesPaginationProps { currentPage: number; totalPages: number; totalInvoices: number; limit: number; offset: number; onPageChange: (page: number) => void; isLoading?: boolean; } export declare function InvoicesPagination({ currentPage, totalPages, totalInvoices, limit, offset, onPageChange, isLoading, }: InvoicesPaginationProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=InvoicesPagination.d.ts.map