/**
* @param {HTMLTextAreaElement} textarea
* @param {{ minrows?: 2; maxrows?: 10; }} [options]
*/
export function autosize(textarea: HTMLTextAreaElement, options?: {
minrows?: 2 | undefined;
maxrows?: 10 | undefined;
} | undefined): {
destroy(): void;
};