import { Command as $Command } from "@smithy/core/client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTClient"; import { RegisterCertificateRequest, RegisterCertificateResponse, } from "../models/models_2"; export { __MetadataBearer }; export { $Command }; export interface RegisterCertificateCommandInput extends RegisterCertificateRequest {} export interface RegisterCertificateCommandOutput extends RegisterCertificateResponse, __MetadataBearer {} declare const RegisterCertificateCommand_base: { new ( input: RegisterCertificateCommandInput ): import("@smithy/core/client").CommandImpl< RegisterCertificateCommandInput, RegisterCertificateCommandOutput, IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( input: RegisterCertificateCommandInput ): import("@smithy/core/client").CommandImpl< RegisterCertificateCommandInput, RegisterCertificateCommandOutput, IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; export declare class RegisterCertificateCommand extends RegisterCertificateCommand_base { protected static __types: { api: { input: RegisterCertificateRequest; output: RegisterCertificateResponse; }; sdk: { input: RegisterCertificateCommandInput; output: RegisterCertificateCommandOutput; }; }; }