import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * A message confirming the instance was canceled, including the instance and workflow IDs */ export type CancelWorkflowInstanceResponse = { message?: string | undefined; }; /** @internal */ export declare const CancelWorkflowInstanceResponse$inboundSchema: z.ZodType; export declare function cancelWorkflowInstanceResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cancelworkflowinstanceresponse.d.ts.map