import { Property } from '../../typedef/instance/Property';
export declare class PropertyCodec {
    static decodeArray(array: any[]): Property[];
    static decode(o: any): Property;
    static encode(property: Property): Object;
    static encodeArray(properties: Map<number, Property>): Array<Object>;
}
