import { Context, Schema } from 'koishi';
export declare const name = "steaminfo-xiaoheihe";
export declare const using: string[];
export interface Config {
    cookies: string;
    waitTimeout: number;
    renderDelay: number;
    deviceScaleFactor: number;
    imageType: 'jpeg' | 'png';
    imageQuality: number;
    showGameTitle: boolean;
    showOnlineCount: boolean;
    debug: boolean;
}
export declare const Config: Schema<Config>;
export declare function apply(ctx: Context, config: Config): void;
