import type { Patch as ImmerPatch } from 'immer'; import type { DendriformPatch } from './types'; export declare const optimise: (base: B, patches: ImmerPatch[]) => DendriformPatch[]; export declare const optimiseArray: (base: B[], patches: ImmerPatch[]) => DendriformPatch[];