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<Workflow> | undefined;
    /**
     * Control information and metadata for the response.
     */
    responseMetadata?: ResponseMetadata | undefined;
};
/** @internal */
export declare const WorkflowsListSuccess$inboundSchema: z.ZodType<WorkflowsListSuccess, z.ZodTypeDef, unknown>;
export declare function workflowsListSuccessFromJSON(jsonString: string): SafeParseResult<WorkflowsListSuccess, SDKValidationError>;
//# sourceMappingURL=workflowslistsuccess.d.ts.map