import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
  DescribeProjectsRequest,
  DescribeProjectsResponse,
} from "../models/models_0";
export { __MetadataBearer };
export interface DescribeProjectsCommandInput extends DescribeProjectsRequest {}
export interface DescribeProjectsCommandOutput
  extends DescribeProjectsResponse,
    __MetadataBearer {}
declare const DescribeProjectsCommand_base: {
  new (
    input: DescribeProjectsCommandInput
  ): import("@smithy/core/client").CommandImpl<
    DescribeProjectsCommandInput,
    DescribeProjectsCommandOutput,
    import("..").RekognitionClientResolvedConfig,
    import("..").ServiceInputTypes,
    import("..").ServiceOutputTypes
  >;
  new (
    ...[input]: [] | [DescribeProjectsCommandInput]
  ): import("@smithy/core/client").CommandImpl<
    DescribeProjectsCommandInput,
    DescribeProjectsCommandOutput,
    import("..").RekognitionClientResolvedConfig,
    import("..").ServiceInputTypes,
    import("..").ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
};
export declare class DescribeProjectsCommand extends DescribeProjectsCommand_base {
  protected static __types: {
    api: {
      input: DescribeProjectsRequest;
      output: DescribeProjectsResponse;
    };
    sdk: {
      input: DescribeProjectsCommandInput;
      output: DescribeProjectsCommandOutput;
    };
  };
}
