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