export declare const argvs: string[]; export interface Menu { path: string; name: string; title: string; children: Menu[]; config?: { title?: string; date?: string; }; } export declare function treeifyPath(paths: { config?: { [key: string]: string | undefined; }; markdown: string; path: string; filePath: string; }[]): Menu[]; export declare function getMenus(dirname: string, baseDir: string): Promise<{ menus: Menu[]; }>; export declare function parseMarkdownConfig(content: string): { config?: undefined | { [key: string]: undefined | string; }; markdown: string; }; export declare function markdown2HTML(content: string): string;