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