import { Relation } from 'typeorm'; import { Client } from './client'; export declare class DeviceCustomConfiguration { id: number; clientId: number | null; client?: Relation; deviceTypeId: number | null; imei: string | null; configFileUrl: string | null; skipActivationDefaults: boolean; createdAt: Date | null; po: string | null; }