import { IState } from "./typings"; export declare const DEFAULT_PAGE_SIZE = 10; export declare const initState: IState; export declare function getType(o: any): any; export declare function isObject(o: any): boolean; export declare function getTableFilterParams(filterParams: any): any; export declare function defaultSortFormatter(sortParams: any): { sortParams?: undefined; } | { sortParams: any; }; export declare function defaultFilterFormatter(filterParams: any): { filterParams?: undefined; } | { filterParams: any; };