import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WaitAction = { type: "wait"; }; /** @internal */ export declare const WaitAction$inboundSchema: z.ZodType; /** @internal */ export type WaitAction$Outbound = { type: "wait"; }; /** @internal */ export declare const WaitAction$outboundSchema: z.ZodType; export declare function waitActionToJSON(waitAction: WaitAction): string; export declare function waitActionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=waitaction.d.ts.map