import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LightsailClient"; import { GetBundlesRequest, GetBundlesResult } from "../models/models_0"; export { __MetadataBearer }; export { $Command }; export interface GetBundlesCommandInput extends GetBundlesRequest {} export interface GetBundlesCommandOutput extends GetBundlesResult, __MetadataBearer {} declare const GetBundlesCommand_base: { new ( input: GetBundlesCommandInput ): import("@smithy/smithy-client").CommandImpl< GetBundlesCommandInput, GetBundlesCommandOutput, LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( ...[input]: [] | [GetBundlesCommandInput] ): import("@smithy/smithy-client").CommandImpl< GetBundlesCommandInput, GetBundlesCommandOutput, LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; export declare class GetBundlesCommand extends GetBundlesCommand_base { protected static __types: { api: { input: GetBundlesRequest; output: GetBundlesResult; }; sdk: { input: GetBundlesCommandInput; output: GetBundlesCommandOutput; }; }; }