export interface FileContentsSectionsItem { /** The starting page number of this section. */ startPageNumber: number; /** The ending page number of this section. */ endPageNumber: number; /** The markdown content of this section. */ markdown: string; }