export declare abstract class Logger { abstract warn(text: string): void; abstract error(text: string): void; }