import React from 'react'; export interface ITextAreaAutoHeightProps extends Omit, 'className'> { className: { wrapper?: string; textarea?: string; }; } declare function TextAreaAutoHeight({ className, value, ...textareaAttrs }: ITextAreaAutoHeightProps): JSX.Element; declare namespace TextAreaAutoHeight { var defaultProps: { className: {}; }; } export default TextAreaAutoHeight;