import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const AgentRunWakeObject: { readonly AgentRunWake: "agent.run.wake"; }; export type AgentRunWakeObject = ClosedEnum; export type AgentRunWake = { object: AgentRunWakeObject; runId: string; gatewayResponseId: string; gatewayWake: { [k: string]: any; }; }; /** @internal */ export declare const AgentRunWakeObject$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const AgentRunWakeObject$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const AgentRunWake$inboundSchema: z.ZodType; /** @internal */ export type AgentRunWake$Outbound = { object: string; run_id: string; gateway_response_id: string; gateway_wake: { [k: string]: any; }; }; /** @internal */ export declare const AgentRunWake$outboundSchema: z.ZodType; export declare function agentRunWakeToJSON(agentRunWake: AgentRunWake): string; export declare function agentRunWakeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=agentrunwake.d.ts.map