import React, { CSSProperties } from 'react'; import { UseFormControlProps } from '../../hooks/useFormControl'; import { ExternalStyles } from '../../styles'; import { Omit } from '../../util/types'; export interface TextAreaProps extends Omit, 'style'>, UseFormControlProps { style?: ExternalStyles; resize?: CSSProperties['resize']; } export declare function TextArea(props: TextAreaProps): JSX.Element;