/** Resolve a user-supplied path the same way filesystem tools do (cwd + home). */ export declare function normalizeUserPath(inputPath: string): string; /** True if `filePath` is exactly `dirPath` or lies under it (after resolve). */ export declare function isResolvedPathInsideDir(filePath: string, dirPath: string): boolean;