export declare const getRootHtmlPath: () => string; export declare const registerShims: (routerPath: string) => void; export declare const writeToDist: (outputHtmlPath: string, renderOutput: string) => void; /** * Finds, reads and parses the [ts|js]config.json file * @returns The config object */ export declare const parseTypeScriptConfigFiles: () => { api: any; web: any; }; type CompilerOptionsForPaths = { compilerOptions: { baseUrl: string; paths: Record; }; }; /** * Extracts and formats the paths from the [ts|js]config.json file * @param config The config object * @param rootDir {string} Where the jsconfig/tsconfig is loaded from */ export declare function getPathsFromTypeScriptConfig(config: CompilerOptionsForPaths, rootDir: string): { find: string; replacement: string; }[]; export {}; //# sourceMappingURL=internal.d.ts.map