import { DataTableState, FiltersConfig, TableFiltersConfig } from '../../types/tables'; export declare const stateToQueryObject: (state: DataTableState, currentQuery: any) => any; export declare const getValueFromUrl: (query: any) => { filter: any; columnsConfig: any; presetId: any; page: any; pageSize: any; sorting: any; viewState: any; }; export declare const normalizeTableStateValue: (newValue: DataTableState, prevValue: DataTableState, filters: TableFiltersConfig[]) => { filtersConfig: FiltersConfig; filter: TFilter; viewState: TViewState; columnsConfig?: import("../../types/tables").ColumnsConfig; presetId?: number; search?: string; checked?: any[]; folded?: Record; sorting?: import("index").SortingOption[]; selectedId?: any; focusedIndex?: number; page?: number; pageSize?: number; foldAll?: boolean; scrollTo?: import("index").ScrollToConfig; topIndex?: number; visibleCount?: number; }; export declare const normalizeFilterConfig: (filtersConfig: FiltersConfig, filterValue: Record | undefined, filters: TableFiltersConfig[]) => FiltersConfig; //# sourceMappingURL=utils.d.ts.map