import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
import { ResourceMetadata } from "./resourcemetadata.js";
export type Workflow = {
    /**
     * A unique ID for this workflow
     */
    id: string;
    /**
     * A user-provided name for this workflow
     */
    name?: string | undefined;
    /**
     * A unique ID for the account associated with the workflow
     */
    accountId: string;
    /**
     * Indicates the readiness and deployment status of a workflow
     */
    status?: string | undefined;
    metadata?: ResourceMetadata | undefined;
};
/** @internal */
export declare const Workflow$inboundSchema: z.ZodType<Workflow, z.ZodTypeDef, unknown>;
export declare function workflowFromJSON(jsonString: string): SafeParseResult<Workflow, SDKValidationError>;
//# sourceMappingURL=workflow.d.ts.map