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