import { ICacheService } from "./ICacheService"; export declare class InMemoryCacheService implements ICacheService { private cache; constructor(); get(key: string): T; set(key: string, value: T): void; remove(key: string): void; }