interface RuntimeCommandOptions { name?: string; watch?: string[]; webhookPort?: string; scope?: string[]; commands?: string[]; urls?: string[]; model?: string; controlPort?: string; json?: boolean; maxCost?: string; sync?: boolean; apiKey?: string; } export declare function runtimeCommand(targetPath: string, opts: RuntimeCommandOptions): Promise; export declare function runtimeInitCommand(targetPath: string): Promise; export declare function runtimeStatusCommand(opts: { port?: string; token?: string; }): Promise; export declare function runtimeStopCommand(opts: { port?: string; token?: string; }): Promise; export declare function runtimeGapsCommand(targetPath: string): Promise; export declare function runtimeExtractCommand(targetPath: string): Promise; export declare function runtimeTeamCommand(task: string, opts: { codeModel?: string; reviewModel?: string; maxAttempts?: string; cwd?: string; }): Promise; export declare function runtimeFullTeamCommand(task: string, opts: { agents?: string; maxConcurrent?: string; stallTimeout?: string; maxAttempts?: string; cwd?: string; coordinatorModel?: string; codeModel?: string; sync?: boolean; apiKey?: string; reviewModel?: string; testModel?: string; researchModel?: string; opsModel?: string; }): Promise; export declare function runtimeToolsListCommand(opts: { registry?: string; }): Promise; export declare function runtimeToolsApproveCommand(proposalId: string, opts: { registry?: string; approver?: string; reason?: string; }): Promise; export declare function runtimeToolsRollbackCommand(opts: { registry?: string; operator?: string; }): Promise; export declare function runtimeAgentsListCommand(opts: { registry?: string; }): Promise; export declare function runtimeAgentsSpawnCommand(specPath: string, opts: { registry?: string; parentTrust?: string; useLlm?: boolean; }): Promise; export declare function runtimeAgentsRetireCommand(agentId: string, opts: { operator?: string; }): Promise; export declare function runtimeRulesProposeCommand(specPath: string, opts: { registry?: string; }): Promise; export declare function runtimeRulesShadowCommand(ruleId: string, opts: { port?: string; }): Promise; export declare function runtimeRulesPromoteCommand(ruleId: string): Promise; export declare function runtimeSafetyStatusCommand(opts: { path?: string; }): Promise; export declare function runtimeSafetySignCommand(opts: { path?: string; operator?: string; }): Promise; export declare function runtimeSafetyRollbackCommand(targetId: string, opts: { path?: string; operator?: string; type?: string; }): Promise; export declare function runtimeSafetyKillswitchCommand(target: string, opts: { level?: string; action?: string; operator?: string; reason?: string; }): Promise; export {};