import type { Book, BookSummary, Chapter, Volume } from '../domain/book.js'; export type BookDetails = Omit; export declare function parseBookDetails(html: string, bookId: number, sourceUrl: string): BookDetails; export declare function parseCatalogue(html: string, catalogueUrl: string): Volume[]; export declare function parseChapter(html: string, chapter: Chapter): Chapter; export declare function parsePackedChapter(content: string, chapter: Chapter): Chapter; export declare function parseSearchResults(html: string): BookSummary[]; export declare function parseSugoiResults(html: string): BookSummary[]; //# sourceMappingURL=parser.d.ts.map