import { Relation } from 'typeorm'; import { Client } from './client'; import { Plan } from './plan'; export declare class Billing { id: number; deviceId: number | null; imei: string | null; planId: string | null; plan: Relation; subscriptionId: string | null; platform: string | null; status: string | null; visible: boolean; createdAt: Date | null; updatedAt: Date | null; subscriptionValue: number | null; subscriptionPeriodMonths: number | null; subscriptionValueMonthly: number | null; clientId: number | null; client: Relation; }