import React from 'react'; import { MarginProps } from '../../helpers'; export interface OffsetPaginationLocalization { previousPage: string; nextPage: string; } export interface OffsetPaginationProps extends MarginProps { currentPage: number; itemsPerPage: number; itemsPerPageOptions: number[]; totalItems: number; onPageChange(page: number): void; onItemsPerPageChange(range: number): void; label?: string; localization?: OffsetPaginationLocalization; getRangeLabel?(start: number, end: number, totalItems: number): string; } export declare const OffsetPagination: React.FC; //# sourceMappingURL=OffsetPagination.d.ts.map