import { Kysely } from "kysely"; import { ScimConfigurationsAdapter, ScimTokensAdapter, ScimExternalIdsAdapter } from "@authhero/adapter-interfaces"; import { Database } from "../db"; export declare function createScimConfigurationsAdapter(db: Kysely): ScimConfigurationsAdapter; export declare function createScimTokensAdapter(db: Kysely): ScimTokensAdapter; export declare function createScimExternalIdsAdapter(db: Kysely): ScimExternalIdsAdapter;