import { EventEmitter } from '../../stencil-public-runtime'; import { type SwatchPickerOption, type SwatchPickerSection } from './swatch-picker-types'; export declare class SwatchPicker { el: HTMLElement; /** Selected option value. */ value: string; /** Flat option list. Sections take precedence when supplied. Assign as a JavaScript property. */ options: SwatchPickerOption[]; /** Visually separated option groups that remain one radio group. Assign as a JavaScript property. */ sections: SwatchPickerSection[]; /** Accessible name for the complete one-of-many choice. */ groupLabel: string; dsChange: EventEmitter; private get activeOptions(); private selectOption; private focusOption; private handleOptionKeyDown; private renderOption; render(): any; } //# sourceMappingURL=SwatchPicker.d.ts.map