import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { WorkflowListResponseDto } from "./workflowlistresponsedto.js"; export type ListWorkflowResponse = { /** * List of workflows */ workflows: Array; /** * Total number of workflows */ totalCount: number; }; /** @internal */ export declare const ListWorkflowResponse$inboundSchema: z.ZodType; export declare function listWorkflowResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listworkflowresponse.d.ts.map