export interface ChipsInputFieldProps extends Omit, "type"> { /** Controls input styles when focused. If `auto` the input is hidden when not focused. If `visible` the input will always remain visible * @default "visible" */ type?: "auto" | "visible" | "hidden"; /** If set, cursor is changed to pointer */ pointer?: boolean; } export declare function ChipsInputField(props: ChipsInputFieldProps): import("react").JSX.Element;