import { type DomainEntity } from 'domain-objects'; import { DeclastructChange } from '../../domain.objects/DeclastructChange'; /** * .what = computes a single change by comparing desired vs remote state * .why = determines the action needed to achieve desired state for one resource * .note = returns null when both desired and remote are null (nothing to track) */ export declare const computeChange: ({ desired, remote, }: { desired: DomainEntity | null; remote: DomainEntity | null; }) => DeclastructChange | null;