import type { SettingValue } from "../lib/settings/settings.js"; import type { JSX } from 'preact'; export type SelectWidgetComponentOption = { label: string; value: SettingValue; }; export type SelectWidgetComponentProps = { id: string; label: string; value: SettingValue; options: SelectWidgetComponentOption[]; onValueChange: (nextValue: SettingValue) => void; }; export declare function SelectWidgetComponent({ id, label, value, options, onValueChange }: SelectWidgetComponentProps): JSX.Element; //# sourceMappingURL=select-widget-component.d.ts.map