import { EventEmitter, SimpleChanges } from '@angular/core'; import { SelectItem } from "../../shared/model/select-item"; import * as i0 from "@angular/core"; export declare class PanelSummaryStatusComponent { /** * Data to populate component */ dataServiceSummaryStatus: any[]; /** * Array of select options */ data: SelectItem[]; /** * Currently selected option */ selectedItem: SelectItem; /** * Show/hide loading component */ loading: boolean; /** * Angular change handler. Sets selected item to index 0 of data * @param simpleChange */ ngOnChanges(simpleChange: SimpleChanges): void; /** * Internal click handler, dispatches select e * @param item */ clickHandler(item: SelectItem): void; selectEvent: EventEmitter; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }