export type ComboBoxOption = { label: string; value: string; }; export type ComboBoxOptions = { selector: string; options: ComboBoxOption[]; placeholder?: string; searchable?: boolean; onSelect?: (option: ComboBoxOption) => void; hydrate?: boolean; }; //# sourceMappingURL=ComboBox.types.d.ts.map