import * as $dara from '@darabonba/typescript'; export declare class DescribeRegionsResponseBodyRegions extends $dara.Model { /** * @remarks * The region name. * * @example * 华东1(杭州) */ localName?: string; /** * @remarks * The region ID. * * @example * cn-hangzhou */ regionId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeRegionsResponseBody extends $dara.Model { /** * @remarks * The list of regions. */ regions?: DescribeRegionsResponseBodyRegions[]; /** * @remarks * The request ID. * * @example * CE0F23E3-C5F5-5FB3-AA9F-134093C49C60 */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }