import { MangaParser, ISearch, IMangaInfo, IMangaResult, IMangaChapterPage } from '../../models'; declare class MangaKakalot extends MangaParser { readonly name = "MangaKakalot"; protected baseUrl: string; protected logo: string; protected classPath: string; fetchMangaInfo: (mangaId: string) => Promise; fetchChapterPages: (chapterId: string) => Promise; /** * * @param query Search query */ search: (query: string) => Promise>; } export default MangaKakalot;