import type { SorterResult } from './types/table'; export declare const ROW_KEY = "key"; export declare const PAGE_SIZE_OPTIONS: string[]; export declare const PAGE_SIZE: number; export declare const FETCH_SETTING: { pageField: string; sizeField: string; listField: string; totalField: string; }; export declare const DEFAULT_SIZE: string; export declare const DEFAULT_SORT_FN: (sortInfo: SorterResult) => { field: string; order: import("./types/table").SortOrder; } | { field?: undefined; order?: undefined; }; export declare const DEFAULT_FILTER_FN: (data: Recordable) => Recordable; export declare const DEFAULT_ALIGN = "left"; export declare const INDEX_COLUMN_FLAG = "INDEX"; export declare const ACTION_COLUMN_FLAG = "ACTION";