/** * Resolve an ACP agent shipped as an ours-fleet dependency. Running the JS * entrypoint through this process's Node avoids depending on npm exposing a * transitive dependency's bin on the user's global PATH. */ export interface AcpAgentResolution { argv: string[]; bundled: boolean; /** Package manifest used to resolve the adapter's own runtime dependencies. */ manifestPath?: string; version?: string; } export declare function resolveBundledAcpAgent(packageName: string, binName: string, fallbackCommand: string): AcpAgentResolution; export declare function bundledAcpAgent(packageName: string, binName: string, fallbackCommand: string): string[];