export declare class Logger {
    private appName;
    private moduleName;
    constructor(moduleName: string);
    log(text: string): void;
}
