import type * as Extend from "../index"; /** * The result of a merge extract step, which combines outputs from multiple extraction runs into a single output. */ export interface MergeExtractResult { /** The extractors that were merged to produce the output. */ mergedExtractors: Extend.MergeExtractResultMergedExtractorsItem[]; /** The resulting extract run containing the merged output. */ extractRun: Extend.ExtractRun; }