export declare const supportedFormats: Set; /** 检测字体类型 */ export declare const detectFormat: (buffer: Uint8Array) => "sfnt" | "woff" | "woff2"; export type FontType = 'otf' | 'ttf' | 'truetype' | 'sfnt' | 'woff' | 'woff2';