import { LitElement } from 'lit'; interface OptionItem { id: string; label: string; selected?: boolean; } export declare class SpwLitSelect extends LitElement { static styles: import("lit").CSSResult; value: OptionItem[]; label: string; placeholder: string; disabled: boolean; name: string; required: boolean; size: string; assistiveText: string; error: string; hint: string; success: string; showErrorIcon: boolean; showHintIcon: boolean; showSuccessIcon: boolean; internalValue: string | null; firstUpdated(): void; updated(changedProperties: any): void; getInitialSelectedValue(): string | null; handleSelectChange(event: any): void; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'spw-lit-select': SpwLitSelect; } } export {}; //# sourceMappingURL=spw-lit-select.d.ts.map