import type * as Extend from "../index"; export interface ExtractionFieldResultReference { /** The unique identifier for this field */ id: string; /** The name of the extracted field */ fieldName: string; /** The page number that this bounding box is from */ page: number; /** The bounding boxes of the field */ boundingBoxes: Extend.ExtractionFieldResultReferenceBoundingBoxesItem[]; }