import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; import type { DeleteDeviceDefinitionRequest, DeleteDeviceDefinitionResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteDeviceDefinitionCommand}. */ export interface DeleteDeviceDefinitionCommandInput extends DeleteDeviceDefinitionRequest { } /** * @public * * The output of {@link DeleteDeviceDefinitionCommand}. */ export interface DeleteDeviceDefinitionCommandOutput extends DeleteDeviceDefinitionResponse, __MetadataBearer { } declare const DeleteDeviceDefinitionCommand_base: { new (input: DeleteDeviceDefinitionCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteDeviceDefinitionCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** * Deletes a device definition. * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GreengrassClient, DeleteDeviceDefinitionCommand } from "@aws-sdk/client-greengrass"; // ES Modules import * // const { GreengrassClient, DeleteDeviceDefinitionCommand } = require("@aws-sdk/client-greengrass"); // CommonJS import * // import type { GreengrassClientConfig } from "@aws-sdk/client-greengrass"; * const config = {}; // type is GreengrassClientConfig * const client = new GreengrassClient(config); * const input = { // DeleteDeviceDefinitionRequest * DeviceDefinitionId: "STRING_VALUE", // required * }; * const command = new DeleteDeviceDefinitionCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteDeviceDefinitionCommandInput - {@link DeleteDeviceDefinitionCommandInput} * @returns {@link DeleteDeviceDefinitionCommandOutput} * @see {@link DeleteDeviceDefinitionCommandInput} for command's `input` shape. * @see {@link DeleteDeviceDefinitionCommandOutput} for command's `response` shape. * @see {@link GreengrassClientResolvedConfig | config} for GreengrassClient's `config` shape. * * @throws {@link BadRequestException} (client fault) * General error information. * * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* * * @public */ export declare class DeleteDeviceDefinitionCommand extends DeleteDeviceDefinitionCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteDeviceDefinitionRequest; output: {}; }; sdk: { input: DeleteDeviceDefinitionCommandInput; output: DeleteDeviceDefinitionCommandOutput; }; }; }