import { Base } from '../../../lib/parse/base'; import type { BookInfo, TSaveImgCallback } from '../../../lib/parse/base'; export declare class Godamanga extends Base { readonly type = "Godamanga"; parseBookInfo(): Promise; getImgList(chapterUrl: string): Promise; saveImgList(path: string, imgList: string[], saveImgCallback?: TSaveImgCallback): Promise; saveImg(path: string, imgUrl: string, fixFileName?: string | undefined, fixSuffix?: string | undefined): Promise; genReqOptions(): { headers: { 'user-agent': any; referer: string; }; http2: boolean; }; }