import type { Context } from 'koishi'; interface IBlackList { id: number; qq: string; name: string; time: number; reason: string; } declare module 'koishi' { interface Tables { 'guild.blackList': IBlackList; } } export declare function initBlackList(context: Context): Promise; export {};