import { type Command } from "commander"; import type { CliContainer } from "../container.js"; import type { HookBridgeOptions } from "../../../packages/agent-spawn/dist/index.js"; export declare function registerTestCommand(program: Command, container: CliContainer): Command; export declare function executeTest(program: Command, container: CliContainer, service: string, options?: { isolated?: boolean; model?: string; hooks?: HookBridgeOptions; }): Promise;