import { Kysely } from "kysely"; import { CreateTenantParams, Tenant, CreateOptions } from "@authhero/adapter-interfaces"; import { Database } from "../db"; export declare function create(db: Kysely): (params: CreateTenantParams, options?: CreateOptions) => Promise;