import { MetaframeInputMap } from "./v0_4"; export declare const serializeInputs: (inputs: MetaframeInputMap) => Promise; export declare const deserializeInputs: (inputs: MetaframeInputMap) => Promise; export type DataRefSerialized = { _s: true; _c: string; value: string; size: number; }; export type DataRefSerializedTypedArray = DataRefSerialized & { byteLength: number; byteOffset: number; }; export type DataRefSerializedBlob = DataRefSerialized & { fileType?: string; }; export type DataRefSerializedFile = DataRefSerializedBlob & { name: string; lastModified?: number; }; export declare const possiblySerializeValueToDataref: (value: T) => Promise; export declare const possiblyDeserializeDatarefToValue: (value: any) => Promise; export declare const possiblyDeserializeDatarefToFile: (value: any) => Promise; export declare const valueToFile: (value: any, fileName: string, options?: FilePropertyBag) => Promise; //# sourceMappingURL=data.d.ts.map