import { Command as $Command } from "@smithy/core/client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlueClient"; import { RunStatementRequest, RunStatementResponse } from "../models/models_2"; export { __MetadataBearer }; export { $Command }; export interface RunStatementCommandInput extends RunStatementRequest {} export interface RunStatementCommandOutput extends RunStatementResponse, __MetadataBearer {} declare const RunStatementCommand_base: { new ( input: RunStatementCommandInput ): import("@smithy/core/client").CommandImpl< RunStatementCommandInput, RunStatementCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( input: RunStatementCommandInput ): import("@smithy/core/client").CommandImpl< RunStatementCommandInput, RunStatementCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; export declare class RunStatementCommand extends RunStatementCommand_base { protected static __types: { api: { input: RunStatementRequest; output: RunStatementResponse; }; sdk: { input: RunStatementCommandInput; output: RunStatementCommandOutput; }; }; }