import * as React from 'react'; import { MultiValueGenericProps, ControlProps } from 'react-select'; import type { GroupBase, Props } from 'react-select'; import { CapInputSize, InputVariantColor } from '../enums'; export interface SelectProps extends Omit { isDisabled?: boolean; variantSize?: CapInputSize; width?: string | number; onChange?: (newValue: any) => void; deleteButtonAriaLabel?: boolean; variantColor?: InputVariantColor; } export declare function MultiValue = GroupBase