import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
  DeleteCollectionRequest,
  DeleteCollectionResponse,
} from "../models/models_0";
export { __MetadataBearer };
export interface DeleteCollectionCommandInput extends DeleteCollectionRequest {}
export interface DeleteCollectionCommandOutput
  extends DeleteCollectionResponse,
    __MetadataBearer {}
declare const DeleteCollectionCommand_base: {
  new (
    input: DeleteCollectionCommandInput
  ): import("@smithy/core/client").CommandImpl<
    DeleteCollectionCommandInput,
    DeleteCollectionCommandOutput,
    import("..").RekognitionClientResolvedConfig,
    import("..").ServiceInputTypes,
    import("..").ServiceOutputTypes
  >;
  new (
    input: DeleteCollectionCommandInput
  ): import("@smithy/core/client").CommandImpl<
    DeleteCollectionCommandInput,
    DeleteCollectionCommandOutput,
    import("..").RekognitionClientResolvedConfig,
    import("..").ServiceInputTypes,
    import("..").ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
};
export declare class DeleteCollectionCommand extends DeleteCollectionCommand_base {
  protected static __types: {
    api: {
      input: DeleteCollectionRequest;
      output: DeleteCollectionResponse;
    };
    sdk: {
      input: DeleteCollectionCommandInput;
      output: DeleteCollectionCommandOutput;
    };
  };
}
