import type { PackageManagerFamily } from "./package-manager"; interface PackageManagerPathInferenceOptions { readonly realPath?: string; readonly env?: Readonly>; readonly home?: string; readonly platform?: NodeJS.Platform; } export declare function normalizeExecutablePath(path: string, platform: NodeJS.Platform): string; export declare function pathIsWithin(path: string, root: string, platform: NodeJS.Platform): boolean; /** Shared package-manager ownership inference for active and discovered executables. */ export declare function inferPackageManagerFromExecutable(executablePath: string | undefined, options?: PackageManagerPathInferenceOptions): PackageManagerFamily | null; export {}; //# sourceMappingURL=package-manager-path.d.ts.map