export interface TelemetryContextType { config: { isInitialized: boolean; /** Tracks whether we've already attempted runtime projectId resolution (avoids repeated fetch) */ runtimePackageNameHashResolved?: boolean; }; traits: Record & { machineId?: string | null; fingerprint?: { fullHash?: string | null; coreHash?: string | null; components?: Record | null; } | null; repoHash?: string | null; postinstallPackageNameHash?: string | null; runtimePackageNameHash?: string | null; rootPathHash?: string | null; projectId?: string | null; anonymousId?: string | null; sessionId?: string | null; isDocker?: boolean; isCI?: boolean; }; } declare const defaultValue: TelemetryContextType; export default defaultValue;