type AppFontFamilyConfig = { type: "name" | "url"; value?: string; family: string; hash: string; style: string; url: string; weight: number; }; export type AppFontsConfig = Record; export type UIConfig = { app: { fonts: AppFontsConfig; }; }; export {};