import { Command as $Command } from "@smithy/core/client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ImagebuilderClient"; import { DeleteComponentRequest, DeleteComponentResponse, } from "../models/models_0"; export { __MetadataBearer }; export { $Command }; export interface DeleteComponentCommandInput extends DeleteComponentRequest {} export interface DeleteComponentCommandOutput extends DeleteComponentResponse, __MetadataBearer {} declare const DeleteComponentCommand_base: { new ( input: DeleteComponentCommandInput ): import("@smithy/core/client").CommandImpl< DeleteComponentCommandInput, DeleteComponentCommandOutput, ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( input: DeleteComponentCommandInput ): import("@smithy/core/client").CommandImpl< DeleteComponentCommandInput, DeleteComponentCommandOutput, ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; export declare class DeleteComponentCommand extends DeleteComponentCommand_base { protected static __types: { api: { input: DeleteComponentRequest; output: DeleteComponentResponse; }; sdk: { input: DeleteComponentCommandInput; output: DeleteComponentCommandOutput; }; }; }