import { EventEmitter } from '../../stencil.core'; import { IEventOption, TEventParamSelectOption, IEventOptionParams } from '../../types/events'; import { TIncludeExclude, ISelectChangedEvent } from '../../types/option-lists'; export declare class LemiEventOption { event: IEventOption; valueChanged: EventEmitter; enabled: boolean; allowToggle: boolean; _allowToggle: boolean; checked: boolean; protected eventOption: HTMLLemiToggleOptionElement; get options(): TEventParamSelectOption[]; componentWillLoad(): void; refreshEvent(newEventData: any): Promise; processOptionChecked(event: any): void; refreshValue(): void; selectChangedEvent(event: ISelectChangedEvent): void; selectOptionToParams(selectedValue: TIncludeExclude): IEventOptionParams; render(): any; }