import { FontFace, FontFamily } from "./types.mjs"; //#region src/fonts/roundhog.d.ts /** CSS `font-family` name for RoundHog. */ declare const ROUND_HOG_FAMILY: string; declare const roundHogRegularUrl: string; declare const roundHogMediumUrl: string; declare const roundHogSemiBoldUrl: string; declare const roundHogBoldUrl: string; declare const roundHogItalicUrl: string; declare const roundHogMediumItalicUrl: string; declare const roundHogSemiBoldItalicUrl: string; declare const roundHogBoldItalicUrl: string; /** * Every RoundHog face. Weight mapping follows the PostHog app's type scale: * Regular→400, Medium→500, SemiBold→700, Bold→800. Regular (400) is shipped * explicitly so a body weight never falls back to Medium — CSS font fallback is * per-missing-glyph, not per-missing-weight. */ declare const roundHogFaces: readonly FontFace[]; /** RoundHog as a single {@link FontFamily}: its CSS name plus every face. */ declare const roundHog: FontFamily; //#endregion export { ROUND_HOG_FAMILY, roundHog, roundHogBoldItalicUrl, roundHogBoldUrl, roundHogFaces, roundHogItalicUrl, roundHogMediumItalicUrl, roundHogMediumUrl, roundHogRegularUrl, roundHogSemiBoldItalicUrl, roundHogSemiBoldUrl };