import type { OptionType } from '../../types'; export type MultiSelectProps = { selectedOptions: OptionType[] | null; separatedMultiple?: boolean; widthThreshold?: number; widthOffset?: number; }; export type UseMultiSelectProps = { selectedOptions: OptionType[] | null; widthThreshold?: number; widthOffset?: number; }; //# sourceMappingURL=multi-select.types.d.ts.map