import * as $dara from '@darabonba/typescript'; export declare class DescribeApiGroupRequestTag extends $dara.Model { /** * @remarks * The key of the tag. * * @example * appname */ key?: string; /** * @remarks * The value of the tag. * * @example * test_app */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeApiGroupRequest extends $dara.Model { /** * @remarks * The ID of the API group. This ID is generated by the system and globally unique. * * This parameter is required. * * @example * 523e8dc7bbe04613b5b1d726c2a7889d */ groupId?: string; securityToken?: string; /** * @remarks * The object tags that match the lifecycle rule. You can specify multiple tags. * * @example * Key, Value */ tag?: DescribeApiGroupRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }