declare class Logger {
    private static logFile;
    private static timestamp;
    constructor();
    private static formatMessage;
    private static writeToFile;
    static info(...message: any[]): void;
    static debug(...message: any[]): void;
    static error(...message: any[]): void;
    static warn(...message: any[]): void;
}
export declare const logger: typeof Logger;
export {};
