/** * Simple logger utility for CBD Enterprise Engine */ export declare class Logger { private context; constructor(context: string); info(message: string, ...args: any[]): void; warn(message: string, ...args: any[]): void; error(message: string, ...args: any[]): void; debug(message: string, ...args: any[]): void; } //# sourceMappingURL=logger.d.ts.map