import { ComponentInterface } from '../../../stencil-public-runtime'; export declare class BiSelectOption implements ComponentInterface { el: HTMLBiSelectOptionElement; /** The value of the option. */ value: string; /** The label text. */ label: string; /** If the option is selected. */ selected: boolean; /** You can set the initial selected-state for the selected-option. Don't set this if you're also setting the `selected`-prop */ defaultSelected?: boolean; /** If the option is disabled. */ disabled: boolean; private preventParentUpdate; onValueChange(): void; /** Updates the selected without sending the new selected state back to the parent bi-select/bi-select-multiple */ updateSelected(val: boolean): Promise; componentWillLoad(): void; render(): any; private getParent; private isCheckBoxVariant; private handleClick; }