import { Command as $Command } from "@smithy/core/client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DAXClient"; import { CreateClusterRequest, CreateClusterResponse, } from "../models/models_0"; export { __MetadataBearer }; export { $Command }; export interface CreateClusterCommandInput extends CreateClusterRequest {} export interface CreateClusterCommandOutput extends CreateClusterResponse, __MetadataBearer {} declare const CreateClusterCommand_base: { new ( input: CreateClusterCommandInput ): import("@smithy/core/client").CommandImpl< CreateClusterCommandInput, CreateClusterCommandOutput, DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( input: CreateClusterCommandInput ): import("@smithy/core/client").CommandImpl< CreateClusterCommandInput, CreateClusterCommandOutput, DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; export declare class CreateClusterCommand extends CreateClusterCommand_base { protected static __types: { api: { input: CreateClusterRequest; output: CreateClusterResponse; }; sdk: { input: CreateClusterCommandInput; output: CreateClusterCommandOutput; }; }; }