/** * A decorator that memoizes a functions computation based on the current * and previous value of other parameters. * @export * @param {...string[]} properties * @returns {MethodDecorator} */ export declare function MemoizeFrom(...properties: string[]): MethodDecorator;