import type * as Extend from "../index"; export interface ParseRunOutputOcrWordsItem { /** The text content of the word. */ content: string; /** The bounding box coordinates of the word. */ boundingBox: Extend.BoundingBox; /** The confidence score of the OCR detection for this word, between 0 and 1. */ confidence: number; /** The page number where the word was detected. */ pageNumber: number; }