type OptionLabel = string; type OptionValue = unknown; export interface Option { label: OptionLabel; value: OptionValue; } export interface TComboboxProps { options: Option[]; modelValue?: string; placeholder?: string; disabled?: boolean; label?: string; helperText?: string; } export {}; //# sourceMappingURL=TCombobox.types.d.ts.map