import { LitElement } from 'lit'; export declare class Select extends LitElement { label: string; value: string; variant: 'outlined' | 'filled' | 'standard'; disabled: boolean; error: boolean; fullWidth: boolean; multiple: boolean; options: Array<{ value: string; text: string; }>; private focused; private open; static styles: import("lit").CSSResult; connectedCallback(): void; disconnectedCallback(): void; private extractOptionsFromChildren; private handleClick; private handleDocumentClick; private handleKeydown; private handleOptionClick; private removeValue; private getDisplayValue; render(): import("lit-html").TemplateResult<1>; }