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