import { DeviceDTO } from '../../typedef/dto/DeviceDTO';
export declare class DeviceDTOCodec {
static decodeArray(list: any[]): DeviceDTO[];
static decode(o: any): DeviceDTO;
static encode(def: DeviceDTO): any;
static encodeArray(list: DeviceDTO[]): any[];
}