import { EventEmitter, JSX } from '../../stencil-public-runtime'; import { SelectOption, SelectOptionValue } from './air-select-option.types'; export declare class AirSelectOption { /** Reference to the host element */ host: HTMLAirSelectOptionElement; /** Name which will be displayed when option selected */ label?: string; /** Defines select option value */ value: SelectOptionValue; /** Specifies if select option disabled */ disabled: boolean; /** Specifies if select option is selected */ selected: boolean; /** Triggers when select option is selected */ selectOption: EventEmitter; listenClick(event: MouseEvent): void; listenKeyDown(event: KeyboardEvent): void; render(): JSX.Element; }