import type { AsyncSnapshotOptions, SnapshotNode, SnapshotOptions } from './types'; /** @todo Import this type from `json-joy` once it is available. */ export type JsonUint8Array = Uint8Array & { __BRAND__: 'json'; __TYPE__: T; }; export declare const toJsonSnapshotSync: (options: SnapshotOptions) => JsonUint8Array; export declare const fromJsonSnapshotSync: (uint8: JsonUint8Array, options: SnapshotOptions) => void; export declare const toJsonSnapshot: (options: AsyncSnapshotOptions) => Promise>; export declare const fromJsonSnapshot: (uint8: JsonUint8Array, options: AsyncSnapshotOptions) => Promise;