declare type RowsType = number | null;
declare type ResultType = {
    height?: string;
    minHeight?: string;
};
export default function calcTextareaHeight(targetElement: HTMLTextAreaElement, minRows?: RowsType, maxRows?: RowsType): ResultType;
export {};
