export declare type FontSource = 'google' | 'system' | 'custom'; export declare type Font = { key: string; family: string; weight: number; url: string; source: FontSource; }; export declare const CUSTOM_FONT_FAMILY_SUFFIX = "_gobi_custom"; export declare const googleFontFamilies: Record; export declare const googleFontWeights: Record; export declare const systemFontFamilies: Record;