import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WakeAgentRunRequestInput2 = { type?: string | undefined; additionalProperties?: { [k: string]: any; } | undefined; }; export type WakeAgentRunRequestInput = string | Array; export type WakeAgentRunRequest = { input: string | Array; }; /** @internal */ export declare const WakeAgentRunRequestInput2$inboundSchema: z.ZodType; /** @internal */ export type WakeAgentRunRequestInput2$Outbound = { type?: string | undefined; [additionalProperties: string]: unknown; }; /** @internal */ export declare const WakeAgentRunRequestInput2$outboundSchema: z.ZodType; export declare function wakeAgentRunRequestInput2ToJSON(wakeAgentRunRequestInput2: WakeAgentRunRequestInput2): string; export declare function wakeAgentRunRequestInput2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WakeAgentRunRequestInput$inboundSchema: z.ZodType; /** @internal */ export type WakeAgentRunRequestInput$Outbound = string | Array; /** @internal */ export declare const WakeAgentRunRequestInput$outboundSchema: z.ZodType; export declare function wakeAgentRunRequestInputToJSON(wakeAgentRunRequestInput: WakeAgentRunRequestInput): string; export declare function wakeAgentRunRequestInputFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WakeAgentRunRequest$inboundSchema: z.ZodType; /** @internal */ export type WakeAgentRunRequest$Outbound = { input: string | Array; }; /** @internal */ export declare const WakeAgentRunRequest$outboundSchema: z.ZodType; export declare function wakeAgentRunRequestToJSON(wakeAgentRunRequest: WakeAgentRunRequest): string; export declare function wakeAgentRunRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=wakeagentrunrequest.d.ts.map