import { Context } from "koishi"; interface DuelNickname { id: string; group: string; realId: string; } declare module 'koishi' { interface Tables { duel_nickname: DuelNickname; } } export declare function init(ctx: Context): void; export {};