import type { PaginationResponse } from './Paginate'; export declare type Book = { _id: string; name: string; }; export declare type GetBooksResponse = PaginationResponse & { docs: Book[]; }; export declare type GetBookResponse = PaginationResponse & { doc: Book; }; //# sourceMappingURL=Book.d.ts.map