export type ChipListInputProps = { value: string[]; onChange: (value: string[]) => void; readOnly?: boolean; "aria-label": string; "data-size"?: "sm" | "md" | "lg"; type?: "text" | "number" | "date" | "datetime-local"; }; /** * Free text editor for the list operators. Values are added with Enter and * rendered as removable chips. */ export declare function ChipListInput({ value, onChange, readOnly, type, "aria-label": ariaLabel, "data-size": size, }: ChipListInputProps): import("react").JSX.Element;