export declare class UserAppIncident { id: number; userId: Buffer; userName: string | null; userEmail: string | null; deviceOs: string; deviceManufacturer: string | null; deviceModel: string | null; stage: string; appVersion: string; createdAt: Date; errorMessage: string | null; errorFirstReceivedAt: Date | null; errorReceivedAt: Date | null; deviceJailbroken: boolean | null; deviceOsVersion: string | null; deviceFreeMemory: number | null; deviceTotalMemory: number | null; deviceCharging: boolean | null; deviceBatteryLevel: number | null; deviceNetworkAccess: string | null; appActiveScreen: string | null; appInForeground: boolean | null; appDurationInForeground: number | null; appBundleId: string | null; incidentUrl: string | null; errorId: string | null; }