/** * This file was auto-generated by Fern from our API Definition. */ import * as serializers from "../index"; import * as Vellum from "../../api/index"; import * as core from "../../core"; import { WorkflowResultEventState } from "./WorkflowResultEventState"; import { WorkflowResultEventOutputData } from "./WorkflowResultEventOutputData"; import { WorkflowEventError } from "./WorkflowEventError"; import { WorkflowOutput } from "./WorkflowOutput"; import { ExecutionVellumValue } from "./ExecutionVellumValue"; export declare const WorkflowResultEvent: core.serialization.ObjectSchema; export declare namespace WorkflowResultEvent { interface Raw { id: string; state: WorkflowResultEventState.Raw; ts: string; output?: (WorkflowResultEventOutputData.Raw | null) | null; error?: (WorkflowEventError.Raw | null) | null; outputs?: (WorkflowOutput.Raw[] | null) | null; inputs?: (ExecutionVellumValue.Raw[] | null) | null; } }