import type { DataType, TableContext } from '../types';
/** Execute callback to fetch data
 * when working with manual pagination */
declare const useManualPagination: <Data extends DataType>({ tableInstance: { state: { pageSize, pageIndex } }, tableProps: { paginationOptions } }: TableContext<Data>) => void;
export default useManualPagination;
