import type { Session } from '../../domain/index.js'; export type SessionStorage = { get: () => Promise; set: (session: Session) => Promise; clear: () => Promise; }; //# sourceMappingURL=session-storage.d.ts.map