import { type ActiveSession, type RequestMetadata } from "./types.js"; import { type DrizzleExecutor } from "../drizzle.js"; /** * Creates an authSessions authority row for an eligible account and records the proxy-aware request metadata for its issuance. * Persisting the session and telemetry together makes later revocation authoritative and preserves where the credential originated. */ export declare function sessionCreate(executor: DrizzleExecutor, accountId: string, expiresAt: Date, metadata: RequestMetadata): Promise; //# sourceMappingURL=sessionCreate.d.ts.map