import { Kysely } from "kysely"; import { Database } from "../db"; import { RefreshToken, UpdateRefreshTokenOptions } from "@authhero/adapter-interfaces"; export declare function update(db: Kysely): (tenant_id: string, id: string, refresh_token: Partial, options?: UpdateRefreshTokenOptions) => Promise;