import { Context } from "koishi";
import { ScreepsApi } from "screeps-simple-api";
export interface CommandConfig {
    name: string;
    register: (ctx: Context, api: ScreepsApi) => void;
}
export declare const defineCommand: (config: CommandConfig) => CommandConfig;
