import { Message } from 'protobufjs'; import { MessageBase } from '../cogment/types/UtilTypes'; export interface SerializableProtobuf extends Message { getContent(): Uint8Array | string; getContent_asB64(): string; getContent_asU8(): Uint8Array; setContent(value: Uint8Array | string): void; } export declare function deserializeData({ sourcePb, destinationPb, }: { sourcePb: SerializableProtobuf; destinationPb: typeof Message; }): T; //# sourceMappingURL=DeltaEncoding.d.ts.map