export declare class Logger {
    static error(...args: any[]): void;
    static warn(...args: any[]): void;
    static debug(...args: any[]): void;
    static formatBullets(bullets: string[]): string;
}
