import { type DependencyManifest } from '@pnpm/types'; export interface Command { name: string; path: string; } export declare function getBinsFromPackageManifest(manifest: DependencyManifest, pkgPath: string): Promise;