import { State, Modifier } from '@table-library/react-table-library/types/common'; import { TableNode } from '@table-library/react-table-library/types/table'; export declare type PaginationOptions = { isServer?: boolean; }; export declare type PaginationOptionsSound = Required; export declare type PaginationFunctions = { onSetPage: (page: number) => void; onSetSize: (size: number) => void; }; export declare type Pagination = { state: State; fns: PaginationFunctions; options: PaginationOptionsSound; modifier: Modifier; }; export declare type Pages = Record;