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