import React from 'react'; import { MarginProps } from '../../helpers'; export interface StatelessPaginationLocalization { previousPage?: string; nextPage?: string; rangeLabel?: string; label?: string; } export interface StatelessPaginationProps extends MarginProps { itemsPerPage: number; itemsPerPageOptions: number[]; onItemsPerPageChange(range: number): void; onNext?(): void; onPrevious?(): void; localization?: StatelessPaginationLocalization; } export declare const StatelessPagination: React.FC; //# sourceMappingURL=StatelessPagination.d.ts.map