import React from 'react'; interface Props { defaultValue?: string; value?: string; 'data-qa'?: string; disabled?: boolean; label?: string; limit?: number; onChange: Function; hint?: string; name?: string; onBlur?: React.FocusEventHandler; } export default function Textarea(props: Props): JSX.Element; export declare const composeCounter: (text: string, limit: number) => string; export declare const shouldValidate: (text: string, limit?: number) => boolean; export {};