import type { Options } from './types.js';
declare class AbstractStore extends Map<string, string> {
    #private;
    constructor(options: Options);
    clear(): void;
    delete(key: string): boolean;
    set(key: string, value: string): this;
}
export default AbstractStore;
