import { Store, CachingConfig, MultiCache } from "cache-manager"; interface ICacheProperties { name?: string; store?: Store; } export default class GatsbyCache { name: string; store: Store; directory: string; cache?: MultiCache; constructor({ name, store }?: ICacheProperties); init(): GatsbyCache; get(key: any): Promise; set(key: string, value: T, args?: CachingConfig): Promise; del(key: string): Promise; } export {};