/** * Memoize a getter * * The getter will only be evaluated once; subsequent calls will return the previously * produced result without recalculation. */ export declare function memoizedGetter(target: (this: This) => Return, _context: ClassGetterDecoratorContext): (this: This) => Return;