export declare class Logger {
    static info: (...args: any[]) => void;
    static echo: (message: string, vars?: any) => void;
}
