import { Context, Schema } from 'koishi';
import 'koishi-plugin-sc2arcade-search';
export declare const name = "ggcevo-game";
export declare const inject: {
    required: string[];
};
export interface Config {
    proxyAgent: string;
    rankseason: string;
    autorank: boolean;
    ignoreGlobalLimit: boolean;
    groupId: string[];
    checkInterval: number;
    dailyPKLimit: number;
    sameOpponentLimit: boolean;
    maxDailyBeChallenged: number;
    unlimitedBossAttack: boolean;
}
export declare const Config: Schema<Config>;
export declare function apply(ctx: Context, config: Config): void;
