import { ToolCallRecord, ToolFactory } from "../../graph/tools/tool.factory"; import { OperatorToolDefinition } from "../interfaces/operator.tool.interface"; /** * Test-only destructive tool: echoes its note as "executed". Used to exercise * the approval-gate flow end to end. Registered only when NODE_ENV !== "production". */ export declare class OperatorTestActionTool { private readonly factory; constructor(factory: ToolFactory); buildDefinition(recorder: ToolCallRecord[]): OperatorToolDefinition; } //# sourceMappingURL=operator-test-action.tool.d.ts.map