import { Context, Schema } from 'koishi'; import type { Config as GameConfig } from './types'; export declare const name = "game-mini"; export declare const inject: readonly ["database"]; export declare const Config: Schema; export declare function apply(ctx: Context, cfg: GameConfig): Promise;