/** *
* * ## Installation * * ```bash npm2yarn * npm install @auth/kysely-adapter kysely * ``` * * @module @auth/kysely-adapter */ import { Kysely } from "kysely"; import { type Adapter, type AdapterUser, type AdapterAccount, type AdapterSession, type VerificationToken } from "@auth/core/adapters"; export interface Database { User: AdapterUser; Account: AdapterAccount; Session: AdapterSession; VerificationToken: VerificationToken; } export declare const format: { from