import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
  BedrockAgentRuntimeClientResolvedConfig,
  ServiceInputTypes,
  ServiceOutputTypes,
} from "../BedrockAgentRuntimeClient";
import {
  CreateInvocationRequest,
  CreateInvocationResponse,
} from "../models/models_1";
export { __MetadataBearer };
export { $Command };
export interface CreateInvocationCommandInput extends CreateInvocationRequest {}
export interface CreateInvocationCommandOutput
  extends CreateInvocationResponse,
    __MetadataBearer {}
declare const CreateInvocationCommand_base: {
  new (
    input: CreateInvocationCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    CreateInvocationCommandInput,
    CreateInvocationCommandOutput,
    BedrockAgentRuntimeClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  new (
    input: CreateInvocationCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    CreateInvocationCommandInput,
    CreateInvocationCommandOutput,
    BedrockAgentRuntimeClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class CreateInvocationCommand extends CreateInvocationCommand_base {
  protected static __types: {
    api: {
      input: CreateInvocationRequest;
      output: CreateInvocationResponse;
    };
    sdk: {
      input: CreateInvocationCommandInput;
      output: CreateInvocationCommandOutput;
    };
  };
}
