import { ISelect } from '../Select/Select.types'; import { TooltipComponent } from '../Tooltip/types'; export type HIStyles = { label?: string; activeOption?: { label: string; value: any; }; placeholder?: string; onChange?: any; onSelect?: any; editMode?: boolean; data?: ISelect.Props['data']; allowSearch?: boolean; disableEdit?: boolean; selectProps?: Omit; tooltipContent?: string | null; tooltipPosition?: TooltipComponent.Position; };