import { i as NextFontWithVariable, n as Display, r as NextFont, t as CssVariable } from "./declaration-C2S8iRQd.mjs"; //#region src/local.d.ts type LocalFont = { src: string | Array<{ path: string; weight?: string; style?: string; }>; display?: Display; weight?: string; style?: string; adjustFontFallback?: "Arial" | "Times New Roman" | false; fallback?: string[]; preload?: boolean; variable?: T; declarations?: Array<{ prop: string; value: string; }>; }; declare function localFont(options: LocalFont): T extends undefined ? NextFont : NextFontWithVariable; //#endregion export { localFont as default };