import * as $dara from '@darabonba/typescript'; export declare class ListUsersForGroupResponseBodyUsersUser extends $dara.Model { displayName?: string; joinDate?: string; userName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListUsersForGroupResponseBodyUsers extends $dara.Model { user?: ListUsersForGroupResponseBodyUsersUser[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListUsersForGroupResponseBody 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 this parameter to obtain the truncated part.```` * * @example * EXAMPLE */ marker?: string; /** * @remarks * The request ID. * * @example * 4B450CA1-36E8-4AA2-8461-86B42BF4CC4E */ requestId?: string; users?: ListUsersForGroupResponseBodyUsers; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }