import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type EnvironmentVariableWorkflowInfoDto = { /** * The name of the workflow */ name: string; /** * The unique identifier of the workflow */ workflowId: string; }; /** @internal */ export declare const EnvironmentVariableWorkflowInfoDto$inboundSchema: z.ZodType; export declare function environmentVariableWorkflowInfoDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=environmentvariableworkflowinfodto.d.ts.map