import { ConventionService } from "./ConventionService";
import "colors";
export declare class ConsoleService {
    private conventions;
    constructor(conventions: ConventionService);
    prefix: string;
    debug_flag: boolean;
    log(message: string): void;
    warn(message: string): void;
    debug(message: string): void;
    dir(object: object): void;
    info(message: string): void;
    error(message?: string): void;
}
