import type { IConfigCatCache } from "../ConfigCatCache.js"; interface ICloudflareCache { put(request: string, response: ICloudflareResponse): Promise; match(request: string): Promise; } interface ICloudflareResponse { text(): Promise; } export declare class CloudflareConfigCache implements IConfigCatCache { private static tryGetFactory; private cache; constructor(cache: Promise); set(key: string, value: string): Promise; get(key: string): Promise; } export declare function getCloudflareCache(): Promise | undefined; export {};