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