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