export const LOG: Log;
export default Log;
/**
 * Copyright (c) 2022-present New Relic Corporation. All rights reserved.
 * SPDX-License-Identifier: Apache-2.0
 */
declare class Log {
    verbose: boolean;
    nameSpace: string;
    info(text: any): void;
    debug(text: any): void;
    error(text: any): void;
    warn(text: any): void;
}
//# sourceMappingURL=nr-logger.d.ts.map