export declare class CacheService {
    private readonly cache;
    has(key: string): boolean;
    set(key: string, value: any): void;
    get(key: string): any | undefined;
    clear(key: string): void;
    clearAll(): void;
    hash(input: any): any;
}
