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<BookInfo | false>;
    getImgList(chapterUrl: string): Promise<string[]>;
    saveImgList(path: string, imgList: string[], saveImgCallback?: TSaveImgCallback): Promise<string[]>;
    saveImg(path: string, imgUrl: string, fixFileName?: string | undefined, fixSuffix?: string | undefined): Promise<string>;
}
