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