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