import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
  CognitoIdentityClientResolvedConfig,
  ServiceInputTypes,
  ServiceOutputTypes,
} from "../CognitoIdentityClient";
import {
  LookupDeveloperIdentityInput,
  LookupDeveloperIdentityResponse,
} from "../models/models_0";
export { __MetadataBearer };
export { $Command };
export interface LookupDeveloperIdentityCommandInput
  extends LookupDeveloperIdentityInput {}
export interface LookupDeveloperIdentityCommandOutput
  extends LookupDeveloperIdentityResponse,
    __MetadataBearer {}
declare const LookupDeveloperIdentityCommand_base: {
  new (
    input: LookupDeveloperIdentityCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    LookupDeveloperIdentityCommandInput,
    LookupDeveloperIdentityCommandOutput,
    CognitoIdentityClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  new (
    __0_0: LookupDeveloperIdentityCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    LookupDeveloperIdentityCommandInput,
    LookupDeveloperIdentityCommandOutput,
    CognitoIdentityClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class LookupDeveloperIdentityCommand extends LookupDeveloperIdentityCommand_base {
  protected static __types: {
    api: {
      input: LookupDeveloperIdentityInput;
      output: LookupDeveloperIdentityResponse;
    };
    sdk: {
      input: LookupDeveloperIdentityCommandInput;
      output: LookupDeveloperIdentityCommandOutput;
    };
  };
}
