import { VNode } from '../../stencil-public-runtime'; export declare class SelectOption { host: HTMLAbdsSelectOptionElement; /** * If this Boolean attribute is set, this option is not checkable. Often browsers grey out such control and it won't * receive any browsing event, like mouse clicks or focus-related ones. */ disabled: boolean; /** * If present, the option will be hidden from view. This can be useful for options such as placeholder that would * never be selectable and we want to hide from the visual dropdown. */ hidden: boolean; /** * This attribute is text for the label indicating the meaning of the option. If the label attribute isn't defined, * its value is that of the element text content. */ label: string; /** * If present, this Boolean attribute indicates the option is initially selected. Only one single * abds-select-option of an abds-select element may have the selected attribute. */ selected: boolean; /** * The content of this attribute represents the value to be submitted with the form, should this option be selected. * If this attribute is omitted, the value is taken from the text content of the option element. */ value: string; render(): VNode; }