import { ReifiedType } from '@lightningkite/khrysalis-runtime'; export declare class EntryChange { readonly old: (T | null); readonly _new: (T | null); constructor(old?: (T | null), _new?: (T | null)); static properties: string[]; static propertiesJsonOverride: { _new: string; }; static propertyTypes(T: ReifiedType): { old: ReifiedType; _new: ReifiedType; }; copy: (values: Partial>) => this; equals: (other: any) => boolean; hashCode: () => number; } export declare function xEntryChangeMap(this_: EntryChange, mapper: ((a: T) => B)): EntryChange;