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