/** * Attacheds a decorator to a method on an object and reassigns the resulting value back to the object. */ export declare function attachDecorator(obj: T, property: K, decorator: (target: any, propertyKey: string, descriptor: TypedPropertyDescriptor) => PropertyDescriptor): void;