import * as $dara from '@darabonba/typescript'; export declare class DeleteInstanceRequestTag extends $dara.Model { /** * @remarks * The key of the tag. * * This parameter is required. * * @example * key */ key?: string; /** * @remarks * The value of the tag. * * This parameter is required. * * @example * value */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DeleteInstanceRequest extends $dara.Model { /** * @remarks * The ID of the instance. * * This parameter is required. * * @example * apigateway-sh-ae502ee79ef8 */ instanceId?: string; /** * @remarks * The tag of objects that match the lifecycle rule. You can specify multiple tags. * * @example * Key, Value */ tag?: DeleteInstanceRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }