export declare function loadFont(fontPath: string, fontFace: {
    family: string;
    weight?: string;
    style?: string;
}): void;
export type FontDescriptor = {
    path: string;
    family: string;
    weight?: string;
    style?: string;
};
export declare function loadFonts(fonts: FontDescriptor[], basePath?: string): void;
