import { StoreBaseAdapter } from './store.base.adapter'; import type { SetOptions } from '../store.types'; export declare class ScopedInMemoryStore extends StoreBaseAdapter { private map; private bus; connect(): Promise; disconnect(): Promise; private isExpired; private getEntry; get(key: string): Promise; set(key: string, value: string, opts?: SetOptions): Promise; del(key: string): Promise; exists(key: string): Promise; mget(keys: string[]): Promise<(string | null)[]>; mset(entries: Array<{ key: string; value: string; opts?: SetOptions; }>): Promise; incr(key: string): Promise; decr(key: string): Promise; expire(key: string, ttlSeconds: number): Promise; ttl(key: string): Promise; publish(channel: string, message: string): Promise; subscribe(channel: string, handler: (message: string) => void): Promise<() => Promise>; }