import React from 'react'; type TextareaProps = React.TextareaHTMLAttributes; export interface TextareaAutosizeProps extends Omit { ref?: React.Ref; maxRows?: number; minRows?: number; style?: Omit, 'maxHeight' | 'minHeight'> & { height?: number; }; } export declare function TextareaAutosize({ maxRows, minRows, onChange, ref: userRef, ...props }: TextareaAutosizeProps): import("react/jsx-runtime").JSX.Element; export {};