import type { StoreAdapter } from "../core/otp.types.js"; export declare class MemoryAdapter implements StoreAdapter { private readonly storage; get(key: string): Promise; set(key: string, value: string, ttlSeconds: number): Promise; del(key: string): Promise; increment(key: string, ttlSeconds: number): Promise; }