import * as React from "react"; export interface IPagingApi { init: T; current: T; currentPage?: number; changePage: (variables: T, page?: number, changePageOptions?: IChangePageOptions) => void; attachTableRef: (ref: React.RefObject) => void; } export interface IChangePageOptions { noScrollToTop?: boolean; } export declare function useTableQueryPaging(init: T, options?: { persistedStateId?: string; }): IPagingApi;