import { MaximCache } from "./cache";
export declare class MaximInMemoryCache implements MaximCache {
    private cache;
    getAllKeys(): Promise<string[]>;
    get(key: string): Promise<string | null>;
    set(key: string, value: string): Promise<void>;
    delete(key: string): Promise<void>;
}
