import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WorkflowRunWebhookResponse = { status: string; }; /** @internal */ export declare const WorkflowRunWebhookResponse$inboundSchema: z.ZodType; /** @internal */ export type WorkflowRunWebhookResponse$Outbound = { status: string; }; /** @internal */ export declare const WorkflowRunWebhookResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace WorkflowRunWebhookResponse$ { /** @deprecated use `WorkflowRunWebhookResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WorkflowRunWebhookResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WorkflowRunWebhookResponse$Outbound` instead. */ type Outbound = WorkflowRunWebhookResponse$Outbound; } export declare function workflowRunWebhookResponseToJSON(workflowRunWebhookResponse: WorkflowRunWebhookResponse): string; export declare function workflowRunWebhookResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=workflowrunwebhookresponse.d.ts.map