import { ProviderResponse } from '../../../types/chat';
import { AzureCacheKey } from './types';
export declare class AzureCache {
    private cache;
    set(key: AzureCacheKey, value: ProviderResponse): void;
    get(key: AzureCacheKey): ProviderResponse | undefined;
    has(key: AzureCacheKey): boolean;
    clear(): void;
    private stringifyKey;
}
