import { LitElement } from 'lit'; /** * Page title contextual dropdown option. * @slot unnamed - Slot for option text. */ export declare class PageTitleOption extends LitElement { static styles: import("lit").CSSResult; /** Option value. */ accessor value: string; /** Option selected state. */ accessor selected: boolean; /** * Option text, automatically derived. * @ignore */ accessor text: string; render(): import("lit-html").TemplateResult<1>; private _handleSlotChange; private _handleClick; private _handleKeydown; } declare global { interface HTMLElementTagNameMap { 'kyn-pagetitle-option': PageTitleOption; } } //# sourceMappingURL=pageTitleOption.d.ts.map