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