/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import type { IFluidHandle } from "@fluidframework/core-interfaces"; import type { IChannelStorageService, Serializable } from "@fluidframework/datastore-definitions/internal"; import { BlobTreeEntry } from "@fluidframework/driver-utils/internal"; import type { IFluidSerializer } from "@fluidframework/shared-object-base/internal"; export declare const serializeBlob: (handle: IFluidHandle, path: string, snapshot: Serializable, serializer: IFluidSerializer) => BlobTreeEntry; export declare function deserializeBlob(storage: IChannelStorageService, path: string, serializer: IFluidSerializer): Promise; //# sourceMappingURL=serialization.d.ts.map