import type { IUserSettings } from '@rocket.chat/core-typings'; export type UsersUpdateParamsPOST = { userId: string; data: { email?: string; name?: string; password?: string; username?: string; active?: boolean; bio?: string; nickname?: string; statusText?: string; roles?: string[]; requirePasswordChange?: boolean; setRandomPassword?: boolean; sendWelcomeEmail?: boolean; verified?: boolean; customFields?: Record; settings?: IUserSettings; language?: string; status?: string; }; confirmRelinquish?: boolean; }; export declare const isUsersUpdateParamsPOST: import("ajv").ValidateFunction; //# sourceMappingURL=UsersUpdateParamsPOST.d.ts.map