import * as React from 'react'; export interface TextAreaProps { value?: string; onChange?: (newValue: string) => void; className: string; } export default function TextArea(props: TextAreaProps): React.JSX.Element;