import { CSSProperties } from 'react'; export interface MultiSelectProps { options: []; style: CSSProperties; size?: 'lg' | 'sm'; placeholder: string; className: string; name: string; tokenSeparators: {}; children: any; onChange?: ((value: any) => void) | undefined; }