import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
  IoTClientResolvedConfig,
  ServiceInputTypes,
  ServiceOutputTypes,
} from "../IoTClient";
import {
  DeleteRegistrationCodeRequest,
  DeleteRegistrationCodeResponse,
} from "../models/models_1";
export { __MetadataBearer };
export { $Command };
export interface DeleteRegistrationCodeCommandInput
  extends DeleteRegistrationCodeRequest {}
export interface DeleteRegistrationCodeCommandOutput
  extends DeleteRegistrationCodeResponse,
    __MetadataBearer {}
declare const DeleteRegistrationCodeCommand_base: {
  new (
    input: DeleteRegistrationCodeCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    DeleteRegistrationCodeCommandInput,
    DeleteRegistrationCodeCommandOutput,
    IoTClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  new (
    ...[input]: [] | [DeleteRegistrationCodeCommandInput]
  ): import("@smithy/smithy-client").CommandImpl<
    DeleteRegistrationCodeCommandInput,
    DeleteRegistrationCodeCommandOutput,
    IoTClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class DeleteRegistrationCodeCommand extends DeleteRegistrationCodeCommand_base {}
