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