/** * Dropdown configuration options exposed by the combo box component. */ export type VegaDropdownPropsForComboBox = Partial< Pick< HTMLVegaDropdownElement, 'positionRelativeTo' | 'maxHeight' | 'matchContainerHeight' | 'dynamicOption' | 'isLoading' > >; /** * Supported size variants for the combo box component. */ export type VegaComboBoxSize = 'small' | 'medium';