export type FontConfigType = FontDetailsType | {
    headings?: FontDetailsType;
    body?: FontDetailsType;
};
export type FontDetailsType = {
    family: string;
    weight?: number;
    url?: string;
    format?: FontFormat;
};
export declare const fontFormats: readonly ["woff", "woff2"];
export type FontFormat = (typeof fontFormats)[number];
