export interface TelemetryContextType {
  config: {
    isInitialized: boolean;
  };
  traits: Record<string, any> & {
    machineId?: string | null;
    fingerprint?: {
      fullHash?: string | null;
      coreHash?: string | null;
      components?: Record<string, any> | null;
    } | null;
    projectId?: string | null;
    anonymousId?: string | null;
    sessionId?: string | null;
    isDocker?: boolean;
    isCI?: boolean;
  };
}
declare const defaultValue: TelemetryContextType;
export default defaultValue;