import { Session, SessionId } from "../types/user.js";
/**
 * Get the session object from the session ID.
 * @param sessionId The ID of the session to get.
 * @returns The session object.
 */
export default function getSession(sessionId: SessionId | string): Promise<Session>;
//# sourceMappingURL=getSession.d.ts.map