import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { WorkflowRegistration } from "./workflowregistration.js"; export type WorkflowRegistrationListResponse = { /** * A list of workflow registrations */ workflowRegistrations: Array; nextCursor: string | null; /** * Deprecated: use workflow_registrations */ workflowVersions: Array; }; /** @internal */ export declare const WorkflowRegistrationListResponse$inboundSchema: z.ZodType; export declare function workflowRegistrationListResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=workflowregistrationlistresponse.d.ts.map