import { Pages } from '.'; import { IChapter } from '../Types'; export declare class Chapter implements IChapter { chapter: number; title: string; id: string; views: number; uploadedAt: string; url: string; constructor(chapter: number, title: string, id: string, views: number, uploadedAt: string, url: string); /** * Gets the pages of the chapter * @returns {Promise} */ getPages(): Promise; }