import { type Stats } from 'node:fs'; export type CompletionRetryRealPathResolution = { readonly ok: true; readonly realPath: string; readonly stat: Stats; } | { readonly ok: false; }; /** Resolve a regular evidence path without permitting lexical or symlink escape. */ export declare function resolveCompletionRetryPath(cwd: string, path: string): CompletionRetryRealPathResolution; //# sourceMappingURL=completion-retry-path.d.ts.map