/** * Note: this logic is duplicated from dynatrace-sdk, as design-system can't include sdk binaries */ import { Logger } from './sdk-logger.types.js'; /** @internal */ export declare const getGlobalWithDtRuntime: () => T; /** * Creates a logger instance for structured message recording. * * @param name - Identifier for the logger instance. * @returns An instance of the Logger utility. * @internal */ export declare const createSdkLogger: (name: string) => Readonly; /** * Checks if the logger v2 create fn is available on platform */ export declare const supportsLoggerV2: () => boolean;