import * as React from 'react'; declare type TextareaProps = React.TextareaHTMLAttributes; declare type Style = Omit, 'maxHeight' | 'minHeight'> & { height?: number; }; export declare type TextareaHeightChangeMeta = { rowHeight: number; }; export interface TextareaAutosizeProps extends Omit { maxRows?: number; minRows?: number; onHeightChange?: (height: number, meta: TextareaHeightChangeMeta) => void; cacheMeasurements?: boolean; style?: Style; } declare const _default: React.ForwardRefExoticComponent>; export default _default;