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