import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { PipelineStageType } from "./pipelinestagetype.js"; export type PipelineStage = { costUsd?: number | null | undefined; data?: { [k: string]: any | null; } | undefined; guardrailId?: string | undefined; guardrailScope?: string | undefined; name: string; summary?: string | undefined; /** * Categorical kind of a pipeline stage. Multiple plugins can share a type (e.g. all guardrail-level plugins emit `guardrail`); the `name` field disambiguates which plugin emitted it. */ type: PipelineStageType; }; /** @internal */ export declare const PipelineStage$inboundSchema: z.ZodType; export declare function pipelineStageFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=pipelinestage.d.ts.map