import { z } from 'zod'; import type { SearchAttributeValue } from '../../core/types.ts'; import type { UnknownRestBinding } from '../rest-bindings.ts'; declare const getWorkflowAttributesInput: z.ZodObject<{ workflowId: z.ZodString; }, z.core.$strip>; export type GetWorkflowAttributesInput = z.infer; export type GetWorkflowAttributesOutput = Record; export declare const getWorkflowAttributesOperation: import("../operation-catalog.ts").OperationDefinition<{ workflowId: string; }, GetWorkflowAttributesOutput, unknown>; export declare const getWorkflowAttributesRestBinding: UnknownRestBinding; export {};