import { NodeLogger } from '@jl-org/log/node'; export declare const logger: NodeLogger; /** 相对路径按 process.cwd() 解析,绝对路径原样返回 */ export declare function resolveFromCwd(p: string): string; /** 日志用:优先相对 cwd 的短路径 */ export declare function relForLog(absPath: string): string; export declare function formatKb(n: number): string; export declare function toProjectRelativePath(absPath: string): string;