import type { FilterComponent } from '../../components/filter/filter.component'; import { IFilterConfigWeekItem } from '../../interfaces/items/week.interface'; import { BaseItem } from './base-item'; export declare class WeekItem extends BaseItem { protected _filter: FilterComponent; seedDate: Date; constructor(itemConfig: IFilterConfigWeekItem, _filter: FilterComponent); static create(config: IFilterConfigWeekItem, filter: FilterComponent): WeekItem; setValue(value: any, emitChange?: boolean): void; get query(): { [x: string]: any; }; get chips(): { name?: string; value: string; label: string; }[]; }