import { Client } from '@sentry/core'; interface Attributes { 'os.name'?: string; 'os.version'?: string; 'device.brand'?: string; 'device.model'?: string; 'device.family'?: string; } /** * Get OS and device attributes for logs * * Some of this context is only available asynchronously, so we fetch it once * and cache it for future logs. Logs before the attributes are resolved will not * have this context. */ export declare function getOsDeviceLogAttributes(client: Client): Attributes; export {}; //# sourceMappingURL=log.d.ts.map