export declare type FilterType = 'string' | 'number' | 'boolean' | 'array' | 'multiselect'; export interface FilterModel { name: string; type: FilterType; values: any[]; }