import { Base } from '../../../lib/parse/base'; import type { BookInfo, TSaveImgCallback } from '../../../lib/parse/base'; export declare class Ikuku extends Base { readonly type = "Ikuku"; 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; }