import type { UserConfig as ViteUserConfig, UserConfigFn as ViteUserConfigFn } from 'vite'; import type { FontFamily } from '../assets/fonts/types.js'; import type { AstroInlineConfig, AstroUserConfig, Locales, SessionDriverName } from '../types/public/config.js'; /** * See the full Astro Configuration API Documentation * https://astro.build/config */ export declare function defineConfig(config: AstroUserConfig): AstroUserConfig; /** * Use Astro to generate a fully resolved Vite config */ export declare function getViteConfig(userViteConfig: ViteUserConfig, inlineAstroConfig?: AstroInlineConfig): ViteUserConfigFn;