import * as $dara from '@darabonba/typescript'; export declare class ListUsersResponseBodyUsersUser extends $dara.Model { comments?: string; createDate?: string; displayName?: string; email?: string; mobilePhone?: string; updateDate?: string; userId?: string; userName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListUsersResponseBodyUsers extends $dara.Model { user?: ListUsersResponseBodyUsersUser[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListUsersResponseBody extends $dara.Model { /** * @remarks * Indicates whether the response is truncated. * * @example * true */ isTruncated?: boolean; /** * @remarks * The marker. This parameter is returned only if the value of `IsTruncated` is `true`. If the parameter is returned, you can call this operation again and set `Marker` to obtain the truncated part.`` * * @example * EXAMPLE */ marker?: string; /** * @remarks * The request ID. * * @example * 4B450CA1-36E8-4AA2-8461-86B42BF4CC4E */ requestId?: string; users?: ListUsersResponseBodyUsers; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }