import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
  EKSClientResolvedConfig,
  ServiceInputTypes,
  ServiceOutputTypes,
} from "../EKSClient";
import {
  AssociateIdentityProviderConfigRequest,
  AssociateIdentityProviderConfigResponse,
} from "../models/models_0";
export { __MetadataBearer };
export { $Command };
export interface AssociateIdentityProviderConfigCommandInput
  extends AssociateIdentityProviderConfigRequest {}
export interface AssociateIdentityProviderConfigCommandOutput
  extends AssociateIdentityProviderConfigResponse,
    __MetadataBearer {}
declare const AssociateIdentityProviderConfigCommand_base: {
  new (
    input: AssociateIdentityProviderConfigCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    AssociateIdentityProviderConfigCommandInput,
    AssociateIdentityProviderConfigCommandOutput,
    EKSClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  new (
    __0_0: AssociateIdentityProviderConfigCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    AssociateIdentityProviderConfigCommandInput,
    AssociateIdentityProviderConfigCommandOutput,
    EKSClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class AssociateIdentityProviderConfigCommand extends AssociateIdentityProviderConfigCommand_base {
  protected static __types: {
    api: {
      input: AssociateIdentityProviderConfigRequest;
      output: AssociateIdentityProviderConfigResponse;
    };
    sdk: {
      input: AssociateIdentityProviderConfigCommandInput;
      output: AssociateIdentityProviderConfigCommandOutput;
    };
  };
}
