import { RdashDocument } from '../../RdashDocument'; export declare class RdashSerializer { static _rdashJsonFileName: string; static deserialize(input: string | Record): RdashDocument; static serialize(document: RdashDocument): string; static toBlob(document: RdashDocument): Blob; static blobToJson(blob: Blob): Promise; static bufferToJson(buffer: ArrayBuffer | Buffer): Promise; static uint8ArrayToJson(array: Uint8Array): Promise; }