import { Command as $Command } from "@smithy/core/client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeClient"; import { CreateAccountRequest, CreateAccountResponse, } from "../models/models_0"; export { __MetadataBearer }; export { $Command }; export interface CreateAccountCommandInput extends CreateAccountRequest {} export interface CreateAccountCommandOutput extends CreateAccountResponse, __MetadataBearer {} declare const CreateAccountCommand_base: { new ( input: CreateAccountCommandInput ): import("@smithy/core/client").CommandImpl< CreateAccountCommandInput, CreateAccountCommandOutput, ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( input: CreateAccountCommandInput ): import("@smithy/core/client").CommandImpl< CreateAccountCommandInput, CreateAccountCommandOutput, ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; export declare class CreateAccountCommand extends CreateAccountCommand_base { protected static __types: { api: { input: CreateAccountRequest; output: CreateAccountResponse; }; sdk: { input: CreateAccountCommandInput; output: CreateAccountCommandOutput; }; }; }