import { Context, Schema } from "koishi";
import "koishi-plugin-cron";
export declare const name = "screeps";
export declare const inject: {
    required: string[];
};
export interface Config {
    token: string;
}
export declare const Config: Schema<Config>;
export declare function apply(ctx: Context, config: Config): Promise<void>;
