export declare class Logger { private readonly name; static debug: boolean; constructor(name: string); static log(message: string, meta?: string): void; static info(message: string): void; static error(message: string, meta?: string): void; static warn(message: string, meta?: string): void; log(message: string): void; error(message: string): void; warn(message: string): void; }