import type * as Extend from "../index"; /** * The extractor, classifier, or splitter associated with this evaluation set. */ export type EvaluationSetEntity = Extend.EvaluationSetEntity.Extractor | Extend.EvaluationSetEntity.Classifier | Extend.EvaluationSetEntity.Splitter; export declare namespace EvaluationSetEntity { interface Extractor extends Extend.ExtractorSummary { object: "extractor"; } interface Classifier extends Extend.ClassifierSummary { object: "classifier"; } interface Splitter extends Extend.SplitterSummary { object: "splitter"; } }