export interface PackageManager { name: string; install: string; run: string; dlx: string; exec: string; } /** * Detect the package manager for a project directory by checking for lockfiles. * Returns npm as the default when no lockfile is found. */ export declare function detectPackageManager(cwd: string): PackageManager;