/** * 合并 & 格式化路径 * @param paths * @returns */ export declare const normalizePath: (...paths: string[]) => string; /** * 合并 & 格式化绝对路径 * 1. normalizePath('a', 'b', 'c') => '/a/b/c' * 2. normalizePath('//a//b/c') => '/a/b/c' * 3. normalizePath('a//b/c') => '/a/b/c' * @param paths * @returns */ export declare const normalizeAbsPath: (...paths: string[]) => string;