/// <reference types="cheerio" />
export declare class Author {
    authorId: number | null;
    image: string | null;
    name: string;
    birthDate: string | null;
    deathDate: string | null;
    seriesIdScenario: number[];
    seriesIdDrawing: number[];
    seriesIdBoth: number[];
    constructor($: CheerioAPI);
    private getSeriesId;
    private getImage;
}
