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