export declare function clearRequireCache(modulePath: string): Promise; export declare const removeExtension: (file: string) => string; export declare const getApps: () => Promise; export declare const getPages: (dir: string, options: { exts: string[]; filename?: string; }) => Promise; export declare const getPathWithParamsFromIndex: (path: string, index: any[]) => { path: any; query: any; page: any; }; export declare const getPage: (path: string) => Promise<{ path: any; query: any; data_path: any; page?: undefined; js_path?: undefined; } | { page: null; js_path: string; path?: undefined; query?: undefined; data_path?: undefined; }>; export declare const getAppMeta: (app: string) => Promise; export declare const getAppConfig: (app: string) => Promise; export declare const writeToFile: (path: string, content: string) => Promise; export declare const getSites: () => Promise; export declare const getSiteConfig: (site: string) => Promise; export declare const getJaidConfig: () => Promise; export declare const getDoctypes: () => Promise<({ app: string; mod: string; doctype: string; meta: any; } | null)[]>;