//#region src/declaration.d.ts type CssVariable = `--${string}`; type Display = "auto" | "block" | "swap" | "fallback" | "optional"; type NextFont = { className: string; style: { fontFamily: string; fontWeight?: number; fontStyle?: string; }; }; type NextFontWithVariable = NextFont & { variable: string; }; //#endregion export { NextFontWithVariable as i, Display as n, NextFont as r, CssVariable as t };