import type { User } from '../../../../entities/index.ts'; import type { HttpClient } from '../../../../services/index.ts'; import type { ApiError, Response } from '../../../types/index.ts'; export type ModifyUserInput = { userId: string; user: { mobile_app_version: string; }; }; declare const modifyUser: (http: HttpClient) => { query: (input: ModifyUserInput) => Promise, undefined, ApiError>>; }; export default modifyUser;