import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
  BedrockAgentRuntimeClientResolvedConfig,
  ServiceInputTypes,
  ServiceOutputTypes,
} from "../BedrockAgentRuntimeClient";
import {
  StopFlowExecutionRequest,
  StopFlowExecutionResponse,
} from "../models/models_0";
export { __MetadataBearer };
export { $Command };
export interface StopFlowExecutionCommandInput
  extends StopFlowExecutionRequest {}
export interface StopFlowExecutionCommandOutput
  extends StopFlowExecutionResponse,
    __MetadataBearer {}
declare const StopFlowExecutionCommand_base: {
  new (
    input: StopFlowExecutionCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    StopFlowExecutionCommandInput,
    StopFlowExecutionCommandOutput,
    BedrockAgentRuntimeClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  new (
    input: StopFlowExecutionCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    StopFlowExecutionCommandInput,
    StopFlowExecutionCommandOutput,
    BedrockAgentRuntimeClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class StopFlowExecutionCommand extends StopFlowExecutionCommand_base {
  protected static __types: {
    api: {
      input: StopFlowExecutionRequest;
      output: StopFlowExecutionResponse;
    };
    sdk: {
      input: StopFlowExecutionCommandInput;
      output: StopFlowExecutionCommandOutput;
    };
  };
}
