import React from 'react'; export type ComboboxSize = 'sm' | 'md' | 'lg'; export type ComboboxOption = { value: string; label: string; disabled?: boolean; }; export type ComboboxProps = Omit, 'type' | 'size' | 'className' | 'style' | 'value' | 'defaultValue' | 'onChange'> & { label: string; options: ReadonlyArray; hideLabel?: boolean; error?: string; helperText?: string; size?: ComboboxSize; value?: string; defaultValue?: string; onChange?: React.ChangeEventHandler; noResultsText?: string; className?: string; style?: React.CSSProperties; }; type ComboboxComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const Combobox: ComboboxComponent; export default Combobox; //# sourceMappingURL=index.d.ts.map