import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LightsailClient"; import { GetStaticIpsRequest, GetStaticIpsResult } from "../models/models_1"; export { __MetadataBearer }; export { $Command }; export interface GetStaticIpsCommandInput extends GetStaticIpsRequest {} export interface GetStaticIpsCommandOutput extends GetStaticIpsResult, __MetadataBearer {} declare const GetStaticIpsCommand_base: { new ( input: GetStaticIpsCommandInput ): import("@smithy/smithy-client").CommandImpl< GetStaticIpsCommandInput, GetStaticIpsCommandOutput, LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( ...[input]: [] | [GetStaticIpsCommandInput] ): import("@smithy/smithy-client").CommandImpl< GetStaticIpsCommandInput, GetStaticIpsCommandOutput, LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; export declare class GetStaticIpsCommand extends GetStaticIpsCommand_base { protected static __types: { api: { input: GetStaticIpsRequest; output: GetStaticIpsResult; }; sdk: { input: GetStaticIpsCommandInput; output: GetStaticIpsCommandOutput; }; }; }