import { FontWeight } from './types.js';

declare const fonts: {
    Domaine: {
        name: string;
        default: {
            fileName: string;
            weight: FontWeight;
        };
        bold: {
            fileName: string;
            weight: FontWeight;
        };
    };
    FoundersGrotesk: {
        name: string;
        default: {
            fileName: string;
            weight: FontWeight;
        };
        bold: {
            fileName: string;
            weight: FontWeight;
        };
    };
    FontStack: {
        Serif: string;
        SansSerif: string;
    };
};

export { fonts };
