import { FontFamily } from "./types.mjs"; //#region src/fonts/css.d.ts /** Build the `@font-face` rules for one {@link FontFamily}. Exported for reuse. */ declare function fontFaceCss(font: FontFamily): string; /** RoundHog's eight faces as a single `@font-face` CSS string. */ declare const roundHogFontFaceCss: string; //#endregion export { fontFaceCss, roundHogFontFaceCss };