import type { DefaultTheme, HeadConfig, ThemeOptions } from "vitepress"; export type VitePressConfigProps = { cwd: string; title?: string; description?: string; head?: HeadConfig[]; theme?: ThemeOptions; themeConfig: DefaultTheme.Config; }; export type VitePressConfig = Awaited>; export declare function VitePressConfig(props: VitePressConfigProps): Promise; //# sourceMappingURL=config.d.ts.map