import { MangaParser, ISearch, IMangaInfo, IMangaResult, IMangaChapterPage } from '../../models'; declare class Mangapark extends MangaParser { readonly name = "Mangapark"; protected baseUrl: string; protected logo: string; protected classPath: string; fetchMangaInfo: (mangaId: string, ...args: any) => Promise; fetchChapterPages: (chapterId: string, ...args: any) => Promise; search: (query: string, page?: number, ...args: any[]) => Promise>; } export default Mangapark;