import { LitElement } from 'lit'; import '../../icons/icon-drop-down-google'; /** * Select component * * @fires change - Fires when the value of the select changes */ export declare class ObcSelect extends LitElement { options: { value: string; label: string; level?: number; }[]; value: string | undefined; fullWidth: boolean; selectedValue: string; selectedLabel: string; connectedCallback(): void; render(): import('lit-html').TemplateResult<1>; private changeHandler; static styles: import('lit').CSSResult; } declare global { interface HTMLElementTagNameMap { 'obc-select': ObcSelect; } } //# sourceMappingURL=select.d.ts.map