import { Logger } from "eyevinn-iaf";
export default class AbstractLogger implements Logger {
    colors: {
        error: string;
        info: string;
        warn: string;
        verbose: string;
    };
    private logger;
    verbose(message: string): void;
    info(message: string): void;
    warn(message: string): void;
    error(message: string): void;
}
