import React, { FC, ChangeEvent } from "react"; declare type PaginationState = { page?: number; perPage?: number; }; declare const paginationActions: { onChangePage: (ev: any, page: number) => void; onChangeRowsPerPage: (ev: ChangeEvent) => void; }; declare type IPaginationContext = [PaginationState, typeof paginationActions]; export declare const PaginationContext: React.Context; export declare const PaginationProvider: FC; export declare const usePagination: () => IPaginationContext; export declare const Paginate: () => JSX.Element | null; export {};