export declare class Logger {
    constructor();
    static log(message: string): void;
    static warn(message: string): void;
    static error(message: string): void;
}
