/** Dependencies  */
import { FC } from 'react';
/** Styles */
interface TextAreaProps {
    value?: string;
    onChange?: (event: any) => void;
    id: string;
    maxLength?: number;
    className?: string;
}
declare const TextArea: FC<TextAreaProps>;
export default TextArea;
