import { Base } from '../../../lib/parse/base';
import type { BookInfo } from '../../../lib/parse/base';
export declare class Baozi extends Base {
    readonly type = "baozi";
    getImgList(chapterUrl: string): Promise<string[]>;
    parseBookInfo(): Promise<BookInfo | false>;
}
