type ObserveLifecycle = 'update' | 'updated'; export declare function observe(propertyName: string, lifecycle?: ObserveLifecycle): (target: any, methodName: string) => void; export {};