/** 当前文件所在目录的绝对路径 */ export declare const __dirname: string; /** yarn 命令行参数对象,包含配置选项 */ export declare const yarnArgv: Record & { config?: string; }; export { CUSTOMCONFIG } from './custom-config.mjs'; export declare const TMP_DIR: string; declare const paths: { /** node_modules 目录路径 */ readonly nodeModules: string; /** pnpm node_modules 目录路径 */ readonly pnpmNodeModules: string; /** deno node_modules 目录路径 */ readonly denoNodeModules: string; /** 核心代码路径 */ readonly corePath: string; /** 项目根目录路径 */ readonly programPath: string; /** CA 目录路径 */ readonly CA_DIR: string; /** webpack 缓存目录路径 */ readonly webpackCachePath: string; /** 代码检查工具(ESLint、Stylelint等)的缓存目录路径 */ readonly lintCachePath: string; /** HTTP 远程模块缓存路径 */ readonly httpCachePath: string; /** SWC 缓存目录路径 */ readonly swcCachePath: string; /** 默认配置文件路径 */ readonly configPath: string; /** 自定义配置文件路径 */ readonly customConfigPath: string; /** 测试覆盖率报告路径 */ readonly coveragePath: string; /** 页面目录路径 */ readonly pagesPath: string; /** 组件目录路径 */ readonly componentsPath: string; /** Mock 数据目录路径 */ readonly mockPath: string; }; export declare const config_files: string[]; export declare const routeDir: string; export default paths;