import { Relation } from 'typeorm'; import { Device } from './device'; import { DeviceTypeFirmware } from './deviceTypeFirmware'; export declare class FirmwareUpgradeTask { id: Buffer; deviceTypeFirmwareId: number; deviceTypeFirmware?: Relation; clientId: number; imei: string; status: string; behaviorName: string | null; behaviorParams: object | null; createdAt: Date; modifiedAt: Date | null; preConfig: string | null; postConfig: string | null; commandsTaskId: string | null; postUpgradeCompleted: boolean | null; fwCompletedOn: Date | null; device?: Device; }