import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import { GetAccountSettingsRequest, GetAccountSettingsResponse } from "../models/models_0";
export { __MetadataBearer };
export interface GetAccountSettingsCommandInput extends GetAccountSettingsRequest {}
export interface GetAccountSettingsCommandOutput
  extends GetAccountSettingsResponse, __MetadataBearer {}
declare const GetAccountSettingsCommand_base: {
  new (
    input: GetAccountSettingsCommandInput,
  ): import("@smithy/core/client").CommandImpl<
    GetAccountSettingsCommandInput,
    GetAccountSettingsCommandOutput,
    import("..").LambdaClientResolvedConfig,
    import("..").ServiceInputTypes,
    import("..").ServiceOutputTypes
  >;
  new (
    ...[input]: [] | [GetAccountSettingsCommandInput]
  ): import("@smithy/core/client").CommandImpl<
    GetAccountSettingsCommandInput,
    GetAccountSettingsCommandOutput,
    import("..").LambdaClientResolvedConfig,
    import("..").ServiceInputTypes,
    import("..").ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
};
export declare class GetAccountSettingsCommand extends GetAccountSettingsCommand_base {
  protected static __types: {
    api: {
      input: {};
      output: GetAccountSettingsResponse;
    };
    sdk: {
      input: GetAccountSettingsCommandInput;
      output: GetAccountSettingsCommandOutput;
    };
  };
}
