export type PM = "npm" | "yarn" | "pnpm" | "bun"; export declare const detect: ({ cwd, includeGlobalBun }?: { cwd?: string; includeGlobalBun?: boolean; }) => Promise; export declare function getPackageManagerVersion(pm: PM): Promise; export declare function clearCache(): void;