import { Select, SelectChangeEvent, SelectProps } from '../Select'; export interface IMultiselect extends Omit { label: string; selectType?: 'checkbox' | 'chip' | 'none'; value: string[]; options: Array; } export type { SelectChangeEvent }; export default Select;