import { IPagingApi } from "../useTableQueryPaging"; import { IPagingInfo } from "./IPagingInfo"; interface IPagePagingData { nextPage: number | null; previousPage: number | null; totalPages?: number | null; } export declare function createPagePagingActions(pagingApi: IPagingApi, data: TData): IPagingInfo; export {};