import { AnnotationsMap, CreateObservableOptions } from 'mobx'; /** * An enhanced version of the native mobx makeObservable. */ export declare function makeObservable(target: any, annotations?: AnnotationsMap, options?: CreateObservableOptions): any; /** * An enhanced version of the native mobx isObservableProp */ export declare function isObservableProp(target: any, propertyKey: string): boolean; /** * Check that if a class property was annotated with `@bindable` or `@observable` that * makeObservable was actually called on the instance. Log error on fail. */ export declare function checkMakeObservable(target: any): void;