type PackageManager = 'npm' | 'pnpm' | 'yarn' | 'bun'; declare global { interface Window { /** * Sets the active package manager across all Command instances. Passing null * re-evaluates from localStorage or uses the default. */ setPackageManager: (packageManager: PackageManager | null) => void; } } export {};