import { BackendRuntimeContext } from "../context/BackendRuntimeContext"; import { EntityDict } from "../oak-app-domain"; import { EntityDict as BaseEntityDict } from 'oak-domain/lib/types/Entity'; export declare function mergeUser>(params: { from: string; to: string; }, context: Cxt, innerLogic?: boolean): Promise; export declare function getChangePasswordChannels>(params: { userId: string; }, context: Cxt, innerLogic?: boolean): Promise; export declare function updateUserPassword>(params: { userId: string; prevPassword?: string; captcha?: string; newPassword: string; mobile?: string; }, context: Cxt, innerLogic?: boolean): Promise<{ result: string; times: number; } | { result: string; times?: undefined; }>;