import { Relation } from 'typeorm'; import { Device } from './device'; import { UserActivation } from './userActivation'; export declare class UserActivationDevice { id: number; userActivation: Relation; userActivationId: number; device: Relation; deviceId: number; imei: string; model: string | null; billingInterval: string | null; deviceName: string | null; createdAt: Date | null; modifiedAt: Date | null; status: string | null; trackingReason: string | null; deviceColor: string | null; notificationByEmail: boolean | null; notificationBySms: boolean | null; planAnnual: boolean | null; dataSourceTypeId: number | null; subscriptionId: string | null; platform: string | null; eventType: string | null; planCode: string | null; servicePlan: string | null; clientId: number | null; }