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<CancelWorkflowInstanceResponse, z.ZodTypeDef, unknown>;
export declare function cancelWorkflowInstanceResponseFromJSON(jsonString: string): SafeParseResult<CancelWorkflowInstanceResponse, SDKValidationError>;
//# sourceMappingURL=cancelworkflowinstanceresponse.d.ts.map