export declare type AutofillEvent = { target: Element; isAutofilled: boolean; }; export declare class AutofillMonitor implements OnDestroy { constructor(_platform: Platform, _ngZone: NgZone); monitor(element: Element): Observable; monitor(element: ElementRef): Observable; ngOnDestroy(): void; stopMonitoring(element: Element): void; stopMonitoring(element: ElementRef): void; } export declare class CdkAutofill implements OnDestroy, OnInit { cdkAutofill: EventEmitter; constructor(_elementRef: ElementRef, _autofillMonitor: AutofillMonitor); ngOnDestroy(): void; ngOnInit(): void; } export declare class CdkTextareaAutosize implements AfterViewInit, DoCheck, OnDestroy { enabled: boolean; maxRows: number; minRows: number; constructor(_elementRef: ElementRef, _platform: Platform, _ngZone: NgZone); _noopInputHandler(): void; _setMaxHeight(): void; _setMinHeight(): void; ngAfterViewInit(): void; ngDoCheck(): void; ngOnDestroy(): void; reset(): void; resizeToFitContent(force?: boolean): void; } export declare class TextFieldModule { }