interface TrackedPropertyDefinition { computed: boolean; } declare type TrackedPropertyDefinitionList = { [K in keyof T]: TrackedPropertyDefinition; }; export declare const getTrackedPropertyDefinitionList: (obj: T) => TrackedPropertyDefinitionList; export declare const registerTrackedPropertyDefinition: (proto: T, name: K, computed: boolean) => void; export {}; //# sourceMappingURL=tracked-property-definition.d.ts.map