import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
  IoTClientResolvedConfig,
  ServiceInputTypes,
  ServiceOutputTypes,
} from "../IoTClient";
import {
  TestAuthorizationRequest,
  TestAuthorizationResponse,
} from "../models/models_2";
export { __MetadataBearer };
export { $Command };
export interface TestAuthorizationCommandInput
  extends TestAuthorizationRequest {}
export interface TestAuthorizationCommandOutput
  extends TestAuthorizationResponse,
    __MetadataBearer {}
declare const TestAuthorizationCommand_base: {
  new (
    input: TestAuthorizationCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    TestAuthorizationCommandInput,
    TestAuthorizationCommandOutput,
    IoTClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  new (
    __0_0: TestAuthorizationCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    TestAuthorizationCommandInput,
    TestAuthorizationCommandOutput,
    IoTClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class TestAuthorizationCommand extends TestAuthorizationCommand_base {}
