import { EventEmitter } from '../../stencil-public-runtime'; /** * An option component that can be used to add options to an ino-select component. * * @slot default - The text of the option */ export declare class InoOption { el: HTMLInoOptionElement; /** * Disables the option */ disabled?: boolean; /** * Selects the option */ selected?: boolean; /** * Value of the option */ value: string; /** * Emits on option click */ clickEl: EventEmitter; clickHandler(): void; keydownHandler(e: any): void; componentDidLoad(): void; render(): any; }