import type * as React from 'react'; import type { TextInputProps } from "./TextInput.js"; type Props = Omit & { autoComplete?: React.TextareaHTMLAttributes['autoComplete']; controlProps: NonNullable; }; export declare function TextInputControl(props: Props): import("react/jsx-runtime").JSX.Element; export {};