import * as z from "zod/v3";
export type CancelWorkflowInstanceRequest = {
    /**
     * The unique identifier of the account.
     */
    accountId?: string | undefined;
    workflowId?: string | undefined;
    /**
     * Unique identifier for the workflow instance
     */
    instanceId: string;
};
/** @internal */
export type CancelWorkflowInstanceRequest$Outbound = {
    accountId: string;
    workflowId: string;
    instanceId: string;
};
/** @internal */
export declare const CancelWorkflowInstanceRequest$outboundSchema: z.ZodType<CancelWorkflowInstanceRequest$Outbound, z.ZodTypeDef, CancelWorkflowInstanceRequest>;
export declare function cancelWorkflowInstanceRequestToJSON(cancelWorkflowInstanceRequest: CancelWorkflowInstanceRequest): string;
//# sourceMappingURL=cancelworkflowinstance.d.ts.map