export type Optopns = Dict; /** * normalizePath */ declare function normalizePath(path: string, retain_level?: boolean): string; /** * return format path */ declare function resolve(...args: string[]): string; /** * @func is_absolute # 是否为绝对路径 */ declare function isAbsolute(path: string): boolean; /** * @func is_local # 是否为本地路径 */ declare function isLocal(path: string): boolean; declare function isLocalZip(path: string): boolean; declare function isNetwork(path: string): boolean; declare const _default: { fallbackPath: (url: string) => string; normalizePath: typeof normalizePath; resolve: typeof resolve; isAbsolute: typeof isAbsolute; isLocal: typeof isLocal; isLocalZip: typeof isLocalZip; isNetwork: typeof isNetwork; readonly options: Optopns; config: any; debug: boolean; cwd: () => string; chdir: (cwd: string) => boolean; }; export default _default;