export type applyFilters = Function; export type urlParamConvert = Function; export type hasChip = Function; export type filter = Function; export type removeAllChips = Function; export type FiltersConf = { selectorText: string; values: any[]; type: string; filterFunc: Function; it: Object; value: Object; }; export function applyFilters(filters: any, filtersConf: any): void; export function urlParamConvert(key: string, value: string, filters: Object): any[]; export function hasChip(name: string, value: string): void; export function filter(conf: filtersConf, data: any[], filters: Object): any[]; export function removeAllChips(): void;