export type StateChangeMetadata = {
    source: string;
    timestamp: number;
    changes: any;
    instanceKey?: string;
};
export declare function trackStateChange(target: any, propertyKey: string, descriptor: PropertyDescriptor): PropertyDescriptor;
