import { EventEmitter, AfterViewInit } from '@angular/core'; import { FormGroup } from '@angular/forms'; export declare class WidgetConfiguratorComponent implements AfterViewInit { item: any; saveEmitter: EventEmitter; closeEmitter: EventEmitter; form: FormGroup; constructor(); ngAfterViewInit(): void; readonly values: any; onKeydownHandler(): void; customOptions(config: any): any[]; saveConfiguration(formData: Object): void; close(): void; }