import { Kysely } from "kysely"; import { Database } from "../db"; export declare function userRoles(db: Kysely): { list: (tenant_id: string, user_id: string, _params?: import("@authhero/adapter-interfaces").ListParams, organization_id?: string) => Promise; listUsers: (tenant_id: string, role_id: string, params?: import("@authhero/adapter-interfaces").ListParams) => Promise; create: (tenant_id: string, user_id: string, role_id: string, organization_id?: string, options?: import("@authhero/adapter-interfaces").CreateOptions) => Promise; remove: (tenant_id: string, user_id: string, role_id: string, organization_id?: string) => Promise; };