import { OperationOutcome } from "@medplum/fhirtypes"; import { OvokClient } from "../../ovok-client"; import { ResetPasswordBody } from "../types/ResetPasswordBody"; /** * Resets a user's password by sending a reset password email * Implementation based on https://ovok-internal.readme.io/reference/authresetpasswordcontroller_resetpassword_v2 * * @param this OvokClient instance * @param body Reset password request body containing email * @returns Promise with the OperationOutcome * @throws Reset password error response */ export declare function resetPassword(this: OvokClient, body: ResetPasswordBody): Promise;