export interface FontDescriptor { family: string; path: string; bold: boolean; italic: boolean; } /** * Resolve a font family name + style to a concrete TTF path. * Searches: custom fontMap → custom fontDirs → system fonts → bundled Liberation fonts. */ export declare function resolveFont(family: string, bold?: boolean, italic?: boolean, fontDirs?: string[], fontMap?: Record): string | Buffer; export declare function getBundledFont(family: string, bold?: boolean, italic?: boolean): string | Buffer; //# sourceMappingURL=font-utils.d.ts.map