import { Filter, Sort, TableHeader } from '../models'; /** * convert BmsTableFilters filters in readable query parameters * use by the team BMS api (bms, contribution, api device) * compatible with APIPaginatedResource in use in bo BMS * @param params */ export declare const getFiltersAsQueryParams: (params: { page: number; size: number; search: string; filters?: Filter[]; others?: any; sort?: Sort; }) => any; export declare const enforceActionsColumnHeader: (headers: TableHeader[]) => TableHeader[];