import * as $dara from '@darabonba/typescript'; export declare class DeleteUserRequest extends $dara.Model { /** * @remarks * The name of the RAM user. * * The name must be 1 to 64 characters in length, and can contain letters, digits, periods (.), hyphens (-), and underscores (_). * * @example * zhangq**** */ userName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }