//#region src/serde/base.d.ts interface SerializerProtocol { dumpsTyped(data: any): Promise<[string, Uint8Array]>; loadsTyped(type: string, data: Uint8Array | string): Promise; } //#endregion export { SerializerProtocol }; //# sourceMappingURL=base.d.ts.map