export declare function createCachedFunction<ArgType, ResultType>(func: (arg: ArgType) => ResultType): (arg: ArgType) => ResultType;
