import type { NabiDoc } from '../schema/index.js'; import type { NabiChange } from '../editor/index.js'; export type RedrawOp = { readonly kind: 'remove'; readonly id: string; } | { readonly kind: 'put'; readonly id: string; readonly index: number; }; export declare function planRedraw(doc: NabiDoc, change: NabiChange): RedrawOp[]; //# sourceMappingURL=redraw.d.ts.map