import * as $dara from '@darabonba/typescript'; export declare class DeletePluginRequestTag extends $dara.Model { /** * @remarks * The key of the tag. * * N can be an integer from 1 to 20.`` * * This parameter is required. * * @example * env */ key?: string; /** * @remarks * The value of the tag. * * N can be an integer from 1 to 20.`` * * This parameter is required. * * @example * \\" \\" */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DeletePluginRequest extends $dara.Model { /** * @remarks * The ID of the plug-in to be deleted. * * This parameter is required. * * @example * 9a3f1a5279434f2ba74ccd91c295af9f */ pluginId?: string; securityToken?: string; /** * @remarks * The tag of objects that match the rule. You can specify multiple tags. */ tag?: DeletePluginRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }