/** * Decodes the payload of a Transporter message. If a proxy is encountered while * mapping over the payload then a client agent is spawned to manage that * resource. */ export declare function decode(value: unknown, proxy: (address: string) => unknown): unknown; /** * Encodes the payload of a Transporter message. If a function or proxy is * encountered while mapping over the value a server agent is spawned to manage * that resource. */ export declare function encode(value: unknown, proxy: (value: unknown) => string): unknown; //# sourceMappingURL=Codec.d.ts.map