export interface FileContentsPagesItem { /** The page number of this page in the document. */ pageNumber: number; /** The height of the page in points. Available for PDF and IMG file types. */ pageHeight?: number; /** The width of the page in points. Available for PDF and IMG file types. */ pageWidth?: number; /** Cleaned and structured markdown content of this page. Available for PDF and IMG file types when the `markdown` query parameter is set to true. */ markdown?: string; /** HTML content of the page. Available for DOCX file types when the `html` query parameter is set to true. */ html?: string; }