/** * A class method decorator that limits a method to be called only once. All * subsequent calls will return the result of the first call. */ export declare function once(fn: (this: This, ...args: Args) => Return, context?: ClassMethodDecoratorContext Return>): (this: This, ...args: Args) => Return;