import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
  KendraClientResolvedConfig,
  ServiceInputTypes,
  ServiceOutputTypes,
} from "../KendraClient";
import { SubmitFeedbackRequest } from "../models/models_1";
export { __MetadataBearer };
export { $Command };
export interface SubmitFeedbackCommandInput extends SubmitFeedbackRequest {}
export interface SubmitFeedbackCommandOutput extends __MetadataBearer {}
declare const SubmitFeedbackCommand_base: {
  new (
    input: SubmitFeedbackCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    SubmitFeedbackCommandInput,
    SubmitFeedbackCommandOutput,
    KendraClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  new (
    input: SubmitFeedbackCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    SubmitFeedbackCommandInput,
    SubmitFeedbackCommandOutput,
    KendraClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class SubmitFeedbackCommand extends SubmitFeedbackCommand_base {
  protected static __types: {
    api: {
      input: SubmitFeedbackRequest;
      output: {};
    };
    sdk: {
      input: SubmitFeedbackCommandInput;
      output: SubmitFeedbackCommandOutput;
    };
  };
}
