import { Context, Schema } from 'koishi';
export declare const name = "mizuki-bot";
export declare const inject: {
    required: string[];
};
declare module 'koishi' {
    interface Events {
        'mizuki/resource_update'(...args: string[]): void;
        'mizuki/arknights_update'(...args: string[]): void;
    }
}
export interface Config {
    theme: {
        backgroundColor: string;
        backgroundTextColor: string;
        boxBackground: string;
        boxOutline: string;
        date: string;
        name: string;
        cardBackground: string;
        jellyName: string;
        jellyIconBackground: string;
        jellyIconBorder: string;
        title: string;
        eventTitle: string;
        eventDescription: string;
        groups: {
            normal: string;
            good: string;
            great: string;
            perfect: string;
            special: string;
        };
    };
    remote: string;
    arknightsGameResource: string;
    test_account: string;
}
export declare const Config: Schema<Config>;
export declare function apply(ctx: Context): void;
