export interface FontFamily { name: string; font: { family?: string; style?: "italic" | "normal" | "oblique"; weight?: "bold" | "bolder" | "lighter" | "normal"; }; } export declare const fonts: FontFamily[];