import type * as Extend from "../index"; /** * Raw OCR data from the parsing process. Only included when `returnOcr` is configured in the parse config's advanced options. */ export interface ParseRunOutputOcr { /** An array of individual words detected by OCR. */ words?: Extend.ParseRunOutputOcrWordsItem[]; }