import { CacheDriver } from "./interfaces";
export declare class Cache {
    static store(store?: string): CacheDriver;
    static genKey(obj: Record<string, any>): string;
}
export declare function CacheStore(store?: string): CacheDriver;
