import { Cache } from '../index';
declare class CloudFlareKV implements Cache {
    namespace: any;
    constructor(kvNameSpace: any);
    get(key: string): Promise<any>;
    put(key: string, value: any): Promise<string>;
}
export default CloudFlareKV;
