/**
* A decorator that adds a logger to the class.
* The logger can be accessed via the `log` property.
* @returns A class decorator that adds a logger to the class.
*/exportdeclarefunctionWithLogger(): <T extendsnew (...args: any[]) => any>(OriginalClass: T) => T;