import { Cache } from "../../models/Cache.model"; export declare class LfuCache implements Cache { private map; constructor(size?: number); read(key: string): Promise; write(key: string, value: string): Promise; flush(): Promise; }