import { type ActiveSession } from "./types.js"; import { type DrizzleExecutor } from "../drizzle.js"; /** * Resolves an unrevoked, unexpired authSessions row only while its account has not been banned or deleted. * Rechecking durable session and account authority on every lookup prevents a valid JWT from surviving server-side revocation or account removal. */ export declare function sessionFindActive(executor: DrizzleExecutor, id: string): Promise; //# sourceMappingURL=sessionFindActive.d.ts.map