import { Key } from "./common"; import { KeyDescription } from "./common"; import type { Platform } from "../../platform/web/Platform.js"; import type * as OlmNamespace from "@matrix-org/olm"; type Olm = typeof OlmNamespace; /** * @param {Olm} olm * @param {KeyDescription} keyDescription * @param {string} recoveryKey * @return {Key} */ export declare function keyFromRecoveryKey(keyDescription: KeyDescription, recoveryKey: string, olm: Olm, platform: Platform): Key; export {};