import { FC } from 'react'; import { PillVariant } from './type'; interface PillInputProps { className?: string; defaultValue: string; onChange: (string: any) => void; onFocus?: () => void; onBlur?: () => void; onEnterPressed?: () => void; variant?: PillVariant; isDisabled?: boolean; onRemoveItem?: () => void; isDragging?: boolean; pillIndex?: number; customKeyDown?: Function; isLastTag?: Boolean; pillsCount?: Number; canTruncate?: boolean; } declare const PillInput: FC; export default PillInput;