import type { SDKLogging } from '@strivacity/sdk-core'; declare class CustomLogging implements SDKLogging { xEventId: string | undefined; debug(message: string): void; info(message: string): void; warn(message: string): void; error(message: string, error: Error): void; } export default CustomLogging