import { LegoBaseComponent } from '../../lego-base.component'; import { SelectComponent } from './select.component'; export declare class SelectOptionComponent extends LegoBaseComponent { key: string; inputValue: string; value: string; readonly keyOrValue: string; private _disabled; disabled: boolean; private _selectAll; selectAll: boolean; private _clear; clear: boolean; readonly select: SelectComponent; readonly selected: boolean; readonly multiple: boolean; active: boolean; getLabel(): string; setActiveStyles(): void; setInactiveStyles(): void; onClick(event: UIEvent): void; }