declare let dbConfig: { host: string; user: string; password: string; database: string; } | null; export declare function setDbConfig(config: typeof dbConfig): void; export declare function logHook(hookName: string, detail?: Record): void; export declare function logAgent(agentName: string, action: string, detail?: Record): void; export declare function logSkill(skillName: string, agentName: string, success: boolean): void; export {};