import type { Patch } from '../../Patch';
import type * as types from './types';
/**
 * Decodes a JSON CRDT patch from a JavaScript POJO into a {@link Patch} instance.
 *
 * @param data A JavaScript POJO representing a JSON CRDT patch in "verbose" format.
 * @returns A decoded {@link Patch} instance.
 */
export declare const decode: (data: types.JsonCodecPatch) => Patch;
