/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../index"; /** * A search results output from a Workflow execution. */ export interface WorkflowOutputSearchResults { id: string; /** The output's name, as defined in the workflow */ name: string; type: "SEARCH_RESULTS"; value?: Vellum.SearchResult[] | null; }