export declare class Logger {
    private _namespace;
    private _debugger;
    private _section;
    constructor(namespace: string);
    log(message: string): void;
    scope(namespace: string, id?: string): Logger;
    get enabled(): boolean;
    get namespace(): string;
    logSection(message: string): void;
    open(message: string): void;
    close(): void;
}
