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