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