import { z } from 'zod'; import type { UnknownRestBinding } from '../rest-bindings.ts'; declare const setWorkflowAttributesInput: z.ZodObject<{ workflowId: z.ZodString; attributes: z.ZodOptional; }, z.core.$strip>; declare const setWorkflowAttributesOutput: z.ZodObject<{ ok: z.ZodLiteral; }, z.core.$strip>; export type SetWorkflowAttributesInput = z.infer; export type SetWorkflowAttributesOutput = z.infer; export declare const setWorkflowAttributesOperation: import("../operation-catalog.ts").OperationDefinition<{ workflowId: string; attributes?: unknown; }, { ok: true; }, unknown>; export declare const setWorkflowAttributesRestBinding: UnknownRestBinding; export {};