import { ElementRef, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { FormControl, FormGroup } from '@angular/forms'; import { Subscription } from 'rxjs'; import { MatLegacyMenuTrigger as MatMenuTrigger } from '@angular/material/legacy-menu'; import GridFilterItemInterface from '../../interfaces/grid-filter-item'; import * as i0 from "@angular/core"; export declare class NumberFilterComponent implements OnInit, OnChanges, OnDestroy { initialFilter?: GridFilterItemInterface; resetFilters: null; filter: any; filterApplied: boolean; numericFilterTypes: { value: string; text: string; }[]; selection: FormControl; selectionSubscription: Subscription; NUMBER_PATTERN: "^(\\+|-)?[0-9]+(.[0-9]{1,2})?$"; range: FormGroup<{ from: FormControl; to: FormControl; }>; value: FormControl; filterParam: string | number; invalidRangeValue: boolean; invalidValue: boolean; menu: MatMenuTrigger; fromElement: ElementRef; valueElement: ElementRef; constructor(); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; menuOpened(): void; reset(emit?: boolean): void; validate(): void; private close; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }