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