import { ComponentType, ComponentClass } from 'react'; import { ITextareaProps } from '../Textarea'; import './Textarea_autoResize.css'; /** * Модификатор который увеличивает размер контрола при наборе текста. */ export declare function withAutoResize(WrappedComponent: ComponentType): ComponentClass;