import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
  CreateHostedZoneRequest,
  CreateHostedZoneResponse,
} from "../models/models_0";
import {
  Route53ClientResolvedConfig,
  ServiceInputTypes,
  ServiceOutputTypes,
} from "../Route53Client";
export { __MetadataBearer };
export { $Command };
export interface CreateHostedZoneCommandInput extends CreateHostedZoneRequest {}
export interface CreateHostedZoneCommandOutput
  extends CreateHostedZoneResponse,
    __MetadataBearer {}
declare const CreateHostedZoneCommand_base: {
  new (
    input: CreateHostedZoneCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    CreateHostedZoneCommandInput,
    CreateHostedZoneCommandOutput,
    Route53ClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  new (
    __0_0: CreateHostedZoneCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    CreateHostedZoneCommandInput,
    CreateHostedZoneCommandOutput,
    Route53ClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class CreateHostedZoneCommand extends CreateHostedZoneCommand_base {
  protected static __types: {
    api: {
      input: CreateHostedZoneRequest;
      output: CreateHostedZoneResponse;
    };
    sdk: {
      input: CreateHostedZoneCommandInput;
      output: CreateHostedZoneCommandOutput;
    };
  };
}
