import { EngineInterface } from '@aomao/engine'; export declare const autoGetHotkey: (engine: EngineInterface, name: string, itemKey?: string) => string | undefined; /** * 是否支持字体 * @param font 字体名称 * @returns */ export declare const isSupportFontFamily: (font: string) => boolean; export declare const checkSupportFontFamily: (callback: (fn: (font: string) => boolean) => T) => T;