/**
 * Copyright (c) 2022-present New Relic Corporation. All rights reserved.
 * SPDX-License-Identifier: Apache-2.0
 */
export default class Utils {
    static isObject(value: any): boolean;
    static isString(value: any): boolean;
    static isBool(value: any): boolean;
    static isNumber(value: any): boolean;
    static notEmptyString(value: any): boolean;
    static hasValidAttributes(attributes: any): boolean;
    static isObjectEmpty: (objectName: any) => boolean;
}
//# sourceMappingURL=nr-utils.d.ts.map