import { ElementDefinitionsMap, FtLitElement } from "@fluid-topics/ft-wc-utils"; import { FtSelectOptionProperties } from "./ft-select.properties"; import { PropertyValues } from "lit"; export declare class FtSelectOption extends FtLitElement implements FtSelectOptionProperties { static elementDefinitions: ElementDefinitionsMap; static shadowRootOptions: { delegatesFocus: boolean; clonable?: boolean; customElementRegistry?: CustomElementRegistry | null; mode: ShadowRootMode; serializable?: boolean; slotAssignment?: SlotAssignmentMode; customElements?: CustomElementRegistry; }; label: string; value: any; selected: boolean; slotElement: HTMLSlotElement; private isSlotEmpty; static styles: import("lit").CSSResult[]; protected render(): import("lit-html").TemplateResult<1>; private onSlotChange; protected onClick(): void; protected update(changedProperties: PropertyValues): void; }