import { Context } from 'koishi'; import { Config } from './config'; export interface DebugInfo { guildId: string; userId: string; command: string; isExempt: boolean; currentDir: string; } export declare function debugLog(ctx: Context, config: Config, info: DebugInfo): void; export declare function debugLogResult(ctx: Context, config: Config, code: number | undefined, timeUsed: number): void;