import { Command as $Command } from "@smithy/core/client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlueClient"; import { CreateScriptRequest, CreateScriptResponse } from "../models/models_1"; export { __MetadataBearer }; export { $Command }; export interface CreateScriptCommandInput extends CreateScriptRequest {} export interface CreateScriptCommandOutput extends CreateScriptResponse, __MetadataBearer {} declare const CreateScriptCommand_base: { new ( input: CreateScriptCommandInput ): import("@smithy/core/client").CommandImpl< CreateScriptCommandInput, CreateScriptCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( ...[input]: [] | [CreateScriptCommandInput] ): import("@smithy/core/client").CommandImpl< CreateScriptCommandInput, CreateScriptCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; export declare class CreateScriptCommand extends CreateScriptCommand_base { protected static __types: { api: { input: CreateScriptRequest; output: CreateScriptResponse; }; sdk: { input: CreateScriptCommandInput; output: CreateScriptCommandOutput; }; }; }