/**
 * Stores the result of the first call to the getter and returns that result directly for subsequent calls
 *
 * Applies to: class getters
 */
export declare const CachedProperty: <T = any>() => (_target: Object, _propertyKey: string, descriptor: TypedPropertyDescriptor<T>) => void;
