/** * `replay_request` — validate a drafted recipe before proving: confirm its * selectors extract the target(s), and (with `withoutSecrets`) that the * endpoint is auth-bound. Authored once as a plain {@link RegisteredTool}; the * backend does the actual replay (MCP re-runs locally, cloud re-issues in the * TEE pod). */ import { type ResolveBackend } from '../../../authoring/util.ts'; import { type RegisteredTool } from '../../../tools/registry.ts'; export declare function replayTool(resolveBackend: ResolveBackend): RegisteredTool;