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 propertyTypes(T: ReifiedType): { old: ReifiedType; _new: ReifiedType; }; copy: (values: Partial>) => this; equals: (other: any) => boolean; hashCode: () => number; }