export interface DebugLogEntry { level: "info" | "warn" | "error"; category: string; message: string; source: string; sessionId?: string; agentId?: string; details?: Record; } export declare class InstanceAiConfigDebugLogger { private readonly logPath; constructor(logPath?: string); log(entry: DebugLogEntry): Promise; flush(): Promise; } export declare function getInstanceAiConfigDebugLogger(): InstanceAiConfigDebugLogger;