export interface Filter {
    id?: string;
    group: string;
    title: string;
    name: string;
    initial?: boolean;
}
