import type { AuthSession } from "../types.js"; export declare const createSession: (userId: string) => Promise; export declare const getSessionById: (sessionId: string) => Promise; export declare const deleteSessionById: (sessionId: string) => Promise;