import { FrontMatter } from '../../../common-type.js'; export declare const langs: string[]; export declare const defaultLang = "zh-CN"; export interface BaseRoute { frontMatter: FrontMatter; segments: string[]; routePath: string; file: string; } export declare function getRouterConfig(): Promise<{ frontMatter: Record; segments: string[]; routePath: string; file: string; }[]>; export declare function generateRoutes(routes: BaseRoute[]): string;