import type { JsonPatchOptions } from '../../types';
import type { Op } from '../../op';
import type { Operation } from './types';
export declare class Decoder {
    private readonly options;
    constructor(options: JsonPatchOptions);
    decode(patch: Operation[]): Op[];
}
