import * as $dara from '@darabonba/typescript'; export declare class ListGroupsResponseBodyGroupsGroup extends $dara.Model { comments?: string; createDate?: string; groupId?: string; groupName?: string; updateDate?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListGroupsResponseBodyGroups extends $dara.Model { group?: ListGroupsResponseBodyGroupsGroup[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListGroupsResponseBody extends $dara.Model { groups?: ListGroupsResponseBodyGroups; /** * @remarks * Indicates whether the response is truncated. Valid values: * * * true * * false * * @example * true */ isTruncated?: boolean; /** * @remarks * The pagination token that is used in the next request to retrieve a new page of results. * * > This parameter is returned only when `IsTruncated` is `true`. * * @example * EXAMPLE */ marker?: string; /** * @remarks * The ID of the request. * * @example * 065527AA-2F2E-AD7C-7484-F2626CFE4934 */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }