import { BareProps } from './types'; import React from 'react'; declare type Option = { key: string; text: string; value: string; }; declare type Props = BareProps & { allowAdd?: boolean; defaultValue?: Array; help?: React.ReactNode; isDisabled?: boolean; isError?: boolean; label?: React.ReactNode; onBlur?: () => void; onChange?: (value: Array) => void; onClose?: () => void; openOnFocus?: boolean; placeholder?: string; searchInput?: { autoFocus: boolean; }; value?: Array; withLabel?: boolean; }; declare type State = { options: Array