import * as $dara from '@darabonba/typescript'; export declare class DescribeVpcsResponseBodyVpcsVpcUserCidrs extends $dara.Model { userCidr?: string[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeVpcsResponseBodyVpcsVpcVSwitchIds extends $dara.Model { vSwitchId?: string[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeVpcsResponseBodyVpcsVpc extends $dara.Model { cidrBlock?: string; creationTime?: string; description?: string; isDefault?: boolean; regionId?: string; status?: string; userCidrs?: DescribeVpcsResponseBodyVpcsVpcUserCidrs; VRouterId?: string; vSwitchIds?: DescribeVpcsResponseBodyVpcsVpcVSwitchIds; vpcId?: string; vpcName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeVpcsResponseBodyVpcs extends $dara.Model { vpc?: DescribeVpcsResponseBodyVpcsVpc[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeVpcsResponseBody extends $dara.Model { /** * @remarks * The page number. */ pageNumber?: number; /** * @remarks * The number of entries per page. */ pageSize?: number; /** * @remarks * The request ID. */ requestId?: string; /** * @remarks * The total number of entries. */ totalCount?: number; /** * @remarks * The details of the VPCs. */ vpcs?: DescribeVpcsResponseBodyVpcs; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }