import { Application } from '../../../typedef/app/Application'; import { ObjectWithLifecycle } from '../../../typedef/lifecycle/ObjectWithLifecycle'; export declare class ApplicationWithLifecycleCodec { static encode(obj: ObjectWithLifecycle): { lifecycle: string; application: any; }; static encodeArray(resource: ObjectWithLifecycle[]): any[]; static decode(o: any): ObjectWithLifecycle; static decodeArray(arr: any[]): ObjectWithLifecycle[]; }