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