import { Relation } from 'typeorm'; import { BillingPlans } from './billingPlans'; export declare class BillingDeviceTypePlan { id: number; deviceTypeId: number; planId: string; deviceTypeModel: string; deviceType: string | null; createdAt: Date; status: 'active' | 'disabled' | 'draft'; billingPlans?: Relation; }