import { PaginationResponse } from './Paginate'; export declare type Chapter = { _id: string; chapterName: string; book: string; }; export declare type GetBookChaptersResponse = PaginationResponse & { docs: Chapter[]; }; export declare type GetChaptersResponse = PaginationResponse & { docs: Chapter[]; }; export declare type GetChapterResponse = PaginationResponse & { docs: Chapter[]; }; //# sourceMappingURL=Chapter.d.ts.map