import { Property, Resize } from '@smart-react-components/core/styled-props/css-properties';
import React from 'react';
import { Props as InputProps } from '../Input';
export interface Props extends Omit<InputProps, 'type'> {
    areaMaxHeight?: number;
    areaMinHeight?: number;
    resize?: Property<Resize>;
}
declare const Textarea: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLInputElement>>;
export default Textarea;
