import { reasonGuide, type AgentOpsRequest, type ReasonGuide } from './agent-ops-core.js'; export type { AgentOpsRequest, ReasonGuide }; export { reasonGuide }; type AgentOpsCommand = 'doctor' | 'status' | 'demo'; interface AgentOpsDependencies { request?: AgentOpsRequest; resolveEndpoint?: (explicitEndpoint: string | undefined, env: NodeJS.ProcessEnv) => Promise; now?: () => Date; randomId?: () => string; writeStdout?: (message: string) => void | Promise; writeStderr?: (message: string) => void | Promise; env?: NodeJS.ProcessEnv; } export declare function runAgentOpsCommand(command: AgentOpsCommand, argv: readonly string[], dependencies?: AgentOpsDependencies): Promise; //# sourceMappingURL=agent-ops.d.ts.map