import { ElementRef, OnChanges, OnInit, SimpleChanges } from '@angular/core'; import { FormControl, FormGroup } from '@angular/forms'; import { MatLegacyMenuTrigger as MatMenuTrigger } from '@angular/material/legacy-menu'; import { MatDatepicker } from '@angular/material/datepicker'; import GridFilterItemInterface from '../../interfaces/grid-filter-item'; import * as i0 from "@angular/core"; export declare class DateFilterComponent implements OnInit, OnChanges { initialFilter?: GridFilterItemInterface; resetFilters: null; filter: any; filterApplied: boolean; dateFilterTypes: { value: string; text: string; }[]; range: FormGroup<{ start: FormControl; end: FormControl; }>; selection: FormControl; value: FormControl; invalidValue: boolean; menu: MatMenuTrigger; fromElement: ElementRef; picker: MatDatepicker; constructor(); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; menuOpened(): void; changeSelection(): void; reset(emit?: any): void; validate(): void; private close; private formatDate; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }