import type { ResourceText } from "./ResourceText.js"; /** * An option in a select widget setting */ export type WidgetSelectOption = { /** * Optional React icon name to display with this option */ icon: string | null; /** * Label to display for this option (can use `t::` prefix) */ label: ResourceText; /** * Value to store when this option is selected (must be unique) */ value: string; }; //# sourceMappingURL=WidgetSelectOption.d.ts.map