import * as $dara from '@darabonba/typescript'; export declare class CreateApiGroupRequestTag extends $dara.Model { /** * @example * key */ key?: string; /** * @example * value */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateApiGroupRequest extends $dara.Model { /** * @example * /qqq */ basePath?: string; /** * @example * The weather informations. */ description?: string; /** * @remarks * This parameter is required. * * @example * Weather */ groupName?: string; /** * @example * apigateway-cn-v6419k43xxxxx */ instanceId?: string; securityToken?: string; /** * @example * Key, Value */ tag?: CreateApiGroupRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }