import { Command as $Command } from "@smithy/core/client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlueClient"; import { StopSessionRequest, StopSessionResponse } from "../models/models_2"; export { __MetadataBearer }; export { $Command }; export interface StopSessionCommandInput extends StopSessionRequest {} export interface StopSessionCommandOutput extends StopSessionResponse, __MetadataBearer {} declare const StopSessionCommand_base: { new ( input: StopSessionCommandInput ): import("@smithy/core/client").CommandImpl< StopSessionCommandInput, StopSessionCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( input: StopSessionCommandInput ): import("@smithy/core/client").CommandImpl< StopSessionCommandInput, StopSessionCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; export declare class StopSessionCommand extends StopSessionCommand_base { protected static __types: { api: { input: StopSessionRequest; output: StopSessionResponse; }; sdk: { input: StopSessionCommandInput; output: StopSessionCommandOutput; }; }; }