import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
  AccountClientResolvedConfig,
  ServiceInputTypes,
  ServiceOutputTypes,
} from "../AccountClient";
import { PutContactInformationRequest } from "../models/models_0";
export { __MetadataBearer };
export { $Command };
export interface PutContactInformationCommandInput
  extends PutContactInformationRequest {}
export interface PutContactInformationCommandOutput extends __MetadataBearer {}
declare const PutContactInformationCommand_base: {
  new (
    input: PutContactInformationCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    PutContactInformationCommandInput,
    PutContactInformationCommandOutput,
    AccountClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  new (
    __0_0: PutContactInformationCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    PutContactInformationCommandInput,
    PutContactInformationCommandOutput,
    AccountClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class PutContactInformationCommand extends PutContactInformationCommand_base {
  protected static __types: {
    api: {
      input: PutContactInformationRequest;
      output: {};
    };
    sdk: {
      input: PutContactInformationCommandInput;
      output: PutContactInformationCommandOutput;
    };
  };
}
