import * as z from "zod";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
import { Workflow, Workflow$Outbound } from "./workflow.js";
/**
 * A list of workflows
 */
export type WorkflowList = {
    workflows?: Array<Workflow> | undefined;
};
/** @internal */
export declare const WorkflowList$inboundSchema: z.ZodType<WorkflowList, z.ZodTypeDef, unknown>;
/** @internal */
export type WorkflowList$Outbound = {
    workflows?: Array<Workflow$Outbound> | undefined;
};
/** @internal */
export declare const WorkflowList$outboundSchema: z.ZodType<WorkflowList$Outbound, z.ZodTypeDef, WorkflowList>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace WorkflowList$ {
    /** @deprecated use `WorkflowList$inboundSchema` instead. */
    const inboundSchema: z.ZodType<WorkflowList, z.ZodTypeDef, unknown>;
    /** @deprecated use `WorkflowList$outboundSchema` instead. */
    const outboundSchema: z.ZodType<WorkflowList$Outbound, z.ZodTypeDef, WorkflowList>;
    /** @deprecated use `WorkflowList$Outbound` instead. */
    type Outbound = WorkflowList$Outbound;
}
export declare function workflowListToJSON(workflowList: WorkflowList): string;
export declare function workflowListFromJSON(jsonString: string): SafeParseResult<WorkflowList, SDKValidationError>;
//# sourceMappingURL=workflowlist.d.ts.map