import type { Session } from '../types/index.js'; export interface SessionStore { get(id: string): Promise; save(session: Session): Promise; delete(id: string): Promise; list(userId?: string): Promise; cleanup?(maxAgeMs: number): Promise; }