import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTWirelessClient"; import { CreateDeviceProfileRequest, CreateDeviceProfileResponse, } from "../models/models_0"; export { __MetadataBearer }; export { $Command }; export interface CreateDeviceProfileCommandInput extends CreateDeviceProfileRequest {} export interface CreateDeviceProfileCommandOutput extends CreateDeviceProfileResponse, __MetadataBearer {} declare const CreateDeviceProfileCommand_base: { new ( input: CreateDeviceProfileCommandInput ): import("@smithy/smithy-client").CommandImpl< CreateDeviceProfileCommandInput, CreateDeviceProfileCommandOutput, IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( ...[input]: [] | [CreateDeviceProfileCommandInput] ): import("@smithy/smithy-client").CommandImpl< CreateDeviceProfileCommandInput, CreateDeviceProfileCommandOutput, IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; export declare class CreateDeviceProfileCommand extends CreateDeviceProfileCommand_base { protected static __types: { api: { input: CreateDeviceProfileRequest; output: CreateDeviceProfileResponse; }; sdk: { input: CreateDeviceProfileCommandInput; output: CreateDeviceProfileCommandOutput; }; }; }