import * as $dara from '@darabonba/typescript'; export declare class DescribeStorageSetsResponseBodyStorageSetsStorageSetTagsTag extends $dara.Model { key?: string; value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeStorageSetsResponseBodyStorageSetsStorageSetTags extends $dara.Model { tag?: DescribeStorageSetsResponseBodyStorageSetsStorageSetTagsTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeStorageSetsResponseBodyStorageSetsStorageSet extends $dara.Model { creationTime?: string; description?: string; regionId?: string; resourceGroupId?: string; storageSetId?: string; storageSetName?: string; storageSetPartitionNumber?: number; tags?: DescribeStorageSetsResponseBodyStorageSetsStorageSetTags; zoneId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeStorageSetsResponseBodyStorageSets extends $dara.Model { storageSet?: DescribeStorageSetsResponseBodyStorageSetsStorageSet[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeStorageSetsResponseBody extends $dara.Model { /** * @remarks * The page number of the returned page. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries returned per page. * * @example * 1 */ pageSize?: number; /** * @remarks * The ID of the request. * * @example * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E */ requestId?: string; storageSets?: DescribeStorageSetsResponseBodyStorageSets; /** * @remarks * The total number of storage sets. * * @example * 20 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }