import * as $dara from '@darabonba/typescript'; export declare class SetYikeUserRoleRequest extends $dara.Model { /** * @remarks * The user role. Valid values: * * - SuperAdmin: Super Admin. * * - Admin: Admin. * * - RegularUser: Regular User. * * @example * Admin */ roleName?: string; /** * @remarks * The sub-account user ID. * * @example * id */ yikeUserId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }