import * as React from 'react'; import { ResponsiveCSSProps } from '../../util/css-props'; interface Props extends React.ComponentPropsWithRef<'textarea'>, Omit> { id?: string; stretch?: boolean; errorMessage?: string; } export declare const TextArea: React.ForwardRefExoticComponent & React.RefAttributes>; export {};