import { NextFontWithVariable } from 'next/dist/compiled/@next/font'; export interface Font { font: NextFontWithVariable; name: string; } type SiteFont = { load: 'theme' | 'custom'; style: any; className: string; }; export type SiteFontConfig = { heading: SiteFont; body: SiteFont; }; export default function fonts({ heading, body, theme, }: { heading: Font; body: Font; theme: string; }): Promise; export {}; //# sourceMappingURL=fonts.d.ts.map