/** 计算文字显示需要的宽高 */
export declare function measureText(text: string, font: string): {
    width: number;
    height: number;
};
