interface IConfig { mapType?: 'Map' | 'WeakMap'; } declare const useCache: ({ mapType }: IConfig) => (key: IKey, cacheValue?: ICache | undefined) => ICache | undefined; export default useCache;