import type * as Extend from "../index"; export interface LegacyJsonOutputMetadataValueCitationsItem { /** Page number where the citation was found */ page?: number; /** The text that was referenced */ referenceText?: string | null; /** Array of points defining the polygon around the referenced text */ polygon?: Extend.LegacyJsonOutputMetadataValueCitationsItemPolygonItem[]; /** Width of the page in points */ pageWidth?: number; /** Height of the page in points */ pageHeight?: number; }