import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteComponentRequest, DeleteComponentResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteComponentCommand}. */ export interface DeleteComponentCommandInput extends DeleteComponentRequest { } /** * @public * * The output of {@link DeleteComponentCommand}. */ export interface DeleteComponentCommandOutput extends DeleteComponentResponse, __MetadataBearer { } declare const DeleteComponentCommand_base: { new (input: DeleteComponentCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteComponentCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Ungroups a custom component. When you ungroup custom components, all applicable monitors * that are set up for the component are removed and the instances revert to their standalone * status.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ApplicationInsightsClient, DeleteComponentCommand } from "@aws-sdk/client-application-insights"; // ES Modules import * // const { ApplicationInsightsClient, DeleteComponentCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import * // import type { ApplicationInsightsClientConfig } from "@aws-sdk/client-application-insights"; * const config = {}; // type is ApplicationInsightsClientConfig * const client = new ApplicationInsightsClient(config); * const input = { // DeleteComponentRequest * ResourceGroupName: "STRING_VALUE", // required * ComponentName: "STRING_VALUE", // required * }; * const command = new DeleteComponentCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteComponentCommandInput - {@link DeleteComponentCommandInput} * @returns {@link DeleteComponentCommandOutput} * @see {@link DeleteComponentCommandInput} for command's `input` shape. * @see {@link DeleteComponentCommandOutput} for command's `response` shape. * @see {@link ApplicationInsightsClientResolvedConfig | config} for ApplicationInsightsClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

The server encountered an internal error and is unable to complete the request.

* * @throws {@link ResourceNotFoundException} (client fault) *

The resource does not exist in the customer account.

* * @throws {@link ValidationException} (client fault) *

The parameter is not valid.

* * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* * * @public */ export declare class DeleteComponentCommand extends DeleteComponentCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteComponentRequest; output: {}; }; sdk: { input: DeleteComponentCommandInput; output: DeleteComponentCommandOutput; }; }; }