import { Kysely } from "kysely"; import { Role, RoleInsert, CreateOptions } from "@authhero/adapter-interfaces"; import { Database } from "../db"; export declare function create(db: Kysely): (tenantId: string, params: RoleInsert & { is_system?: boolean; }, options?: CreateOptions) => Promise;