import { Service } from '../../typedef/instance/Service';
export declare class ServiceCodec {
static decodeArray(array: any[]): Service[];
static decode(o: any): Service;
static encode(service: Service): any;
static encodeArray(services: Map<number, Service>): any[];
}