import { Kysely } from "kysely"; import { Database } from "../db"; import { User, UserInsert, CreateOptions, WriteOptions } from "@authhero/adapter-interfaces"; export declare function create(db: Kysely): (tenantId: string, user: UserInsert, options?: CreateOptions & WriteOptions) => Promise;