export type MultiSelectItem = { id?: number | string; name: string; value: string; selected: boolean; }; type MultiSelectProps = { options?: any[]; values?: any[]; placeholder?: string; open?: boolean; fullWidth?: boolean; disabled?: boolean; getOptionLabel?: (option: any) => string; width?: string; handleApply?: (values: any[]) => void; handleCancel?: () => void; }; export default MultiSelectProps; //# sourceMappingURL=type.d.ts.map