import { LayoutMargin, Width } from '@euax-ui/default-props'; import { OptionTypeBase } from 'react-select'; declare type Options = { value: string; label: string; }; export declare type MultiSelectOptionProps = OptionTypeBase; export declare type MultiSelectTagProps = { id?: string; name?: string; isLoading?: boolean; isDisabled?: boolean; options: Options[]; placeholder: string; value: OptionTypeBase | ReadonlyArray; size?: string | undefined | 'sm' | 'md' | 'lg'; onChange: (selects: OptionTypeBase) => void; isCreatable?: boolean; } & Width & LayoutMargin; export {};