/**
 * @description 根据文字和字号，计算该文字在网页上的宽度和高度
 * @param text 文字内容
 * @param fontSize 字号
 * @returns 文字的宽高
 */
export declare const getTextSize: (text: string, fontSize: number) => {
    width: number;
    height: number;
};
