import { JSX } from 'solid-js';
export interface TextareaProps extends JSX.TextareaHTMLAttributes<HTMLTextAreaElement> {
    maxHeight?: number;
    autoResize?: boolean;
}
export declare function Textarea(props: TextareaProps): JSX.Element;
