import { LitElement } from 'lit'; /** * Split button option. * @fires on-action-click - Emits the option details to the parent split button. `detail:{ origEvent: CustomEvent,value: string, text: string,otherattributes }` * @slot unnamed - Slot for option text. */ export declare class SplitButtonOption extends LitElement { static styles: import("lit").CSSResult; /** Split button option value. */ accessor value: string; /** Split button option selected state. */ accessor selected: boolean; /** Split button menu option disabled state. */ accessor disabled: boolean; /** * Option highlighted state for keyboard navigation, automatically derived. * @ignore */ accessor highlighted: boolean; /** * Option text, automatically derived. * @ignore */ accessor text: any; render(): import("lit-html").TemplateResult<1>; private handleSlotChange; private handleClick; private handleBlur; } declare global { interface HTMLElementTagNameMap { 'kyn-splitbutton-option': SplitButtonOption; } } //# sourceMappingURL=splitButtonOption.d.ts.map