import { Hono } from 'hono'; import type { Database as DB } from 'better-sqlite3'; interface AuthSession { email: string; beamIds: string[]; exp: number; } declare function verifyJWT(token: string): AuthSession | null; export declare function authRouter(db: DB): Hono; export { verifyJWT, type AuthSession };