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