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