import { Ownership } from '../../typedef/ownership/Ownership';
export declare class OwnershipCodec {
static decode(o: any): Ownership;
static encode(x: Ownership): any;
static decodeArray(arr: any[]): Ownership[];
static encodeArray(Ownerships: Ownership[]): any[];
}