/** * Expand a path that may contain ~ to the user's home directory * Also handles relative paths by resolving them to absolute */ export declare function expandPath(inputPath: string | unknown): string; /** * Contract an absolute path back to ~ format for display */ export declare function contractPath(absolutePath: string): string; declare const _default: { expandPath: typeof expandPath; contractPath: typeof contractPath; }; export default _default; //# sourceMappingURL=path.d.ts.map