import type { Session } from '../types/token.js'; export interface SessionGetOptions { signal?: AbortSignal; noCache?: boolean; allowStale?: boolean; } export declare const getSession: (sub: `did:${string}:${string}`, options?: SessionGetOptions | undefined) => Promise; export declare const storeSession: (sub: `did:${string}:${string}`, newSession: Session) => Promise; export declare const deleteStoredSession: (sub: `did:${string}:${string}`) => void; export declare const listStoredSessions: () => `did:${string}:${string}`[]; //# sourceMappingURL=sessions.d.ts.map