export interface PatchError extends Error { code: string; message: string; conflictingPaths: string[]; } export declare class PatchErrorImpl implements PatchError { name: string; message: string; code: string; stack?: string; conflictingPaths: string[]; constructor(conflicts: string[]); }