import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ResponseMetadata } from "./responsemetadata.js"; import { Workflow } from "./workflow.js"; /** * A list of workflows has been successfully returned. */ export type WorkflowsListSuccess = { /** * A list of workflows */ data?: Array | undefined; /** * Control information and metadata for the response. */ responseMetadata?: ResponseMetadata | undefined; }; /** @internal */ export declare const WorkflowsListSuccess$inboundSchema: z.ZodType; export declare function workflowsListSuccessFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=workflowslistsuccess.d.ts.map