import { type DomainEntity } from 'domain-objects'; /** * .what = computes human-readable diff between two resources * .why = helps users understand what will change * .note = returns null if resources are identical; for CREATE uses empty object to show all attributes; ignores readonly; preserves key order from into */ export declare const getDisplayableDiff: ({ from, into, }: { from: DomainEntity | null; into: DomainEntity | null; }) => string | null;