import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LightsailClient"; import { CreateKeyPairRequest, CreateKeyPairResult } from "../models/models_0"; export { __MetadataBearer }; export { $Command }; export interface CreateKeyPairCommandInput extends CreateKeyPairRequest {} export interface CreateKeyPairCommandOutput extends CreateKeyPairResult, __MetadataBearer {} declare const CreateKeyPairCommand_base: { new ( input: CreateKeyPairCommandInput ): import("@smithy/smithy-client").CommandImpl< CreateKeyPairCommandInput, CreateKeyPairCommandOutput, LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( input: CreateKeyPairCommandInput ): import("@smithy/smithy-client").CommandImpl< CreateKeyPairCommandInput, CreateKeyPairCommandOutput, LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; export declare class CreateKeyPairCommand extends CreateKeyPairCommand_base { protected static __types: { api: { input: CreateKeyPairRequest; output: CreateKeyPairResult; }; sdk: { input: CreateKeyPairCommandInput; output: CreateKeyPairCommandOutput; }; }; }