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