import { Somewhere } from '../../typedef/somewhere/Somewhere';
export declare class SomewhereCodec {
    static decodeArray(list: any[]): Somewhere[];
    static decodeObject(o: any): Somewhere;
    static encodeObject(s: Somewhere): any;
    static encodeArray(array: Array<Somewhere>): any[];
}
