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