import { Context, Schema } from 'koishi';
export declare const name = "analysis-bilibili";
export declare const using: string[];
export interface Config {
    analysis_blacklist: number[];
    analysis_display_image: boolean;
}
export declare const Config: Schema<Config>;
export declare function apply(ctx: Context, config: Config): Promise<void>;
