import { Context, Schema } from 'koishi';
export declare const name = "tieba-parser-final";
export declare const using: string[];
export interface Config {
    debugMode: boolean;
    width: number;
    screenshotHeight: number;
    showTitle: boolean;
    extractFirstPostText: boolean;
    extractFirstPostImages: boolean;
    extractFirstPostVideo: boolean;
    cookie: string;
}
export declare const Config: Schema<Config>;
export declare function apply(ctx: Context, config: Config): void;
