import React from 'react'; export type ChipsTextFieldSize = 'sm' | 'md' | 'lg'; export type ChipsTextFieldShape = 'default' | 'subtle'; export interface ChipsTextFieldProps { value: string[]; label?: string; placeholder?: string; separator?: string; showChipRemoveIcon?: boolean; minInputWidth?: number; maxInputWidth?: number; error?: string; disabled?: boolean; size?: ChipsTextFieldSize; shape?: ChipsTextFieldShape; iconLeft?: React.ReactNode; iconRight?: React.ReactNode; onChange: (value: string[]) => void; validateItem?: (value: string) => boolean; onFocus?: React.FocusEventHandler; onBlur?: React.FocusEventHandler; } export declare const ChipsTextField: React.FC;