import { Command as $Command } from "@smithy/core/client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlueClient"; import { DeleteTableRequest, DeleteTableResponse } from "../models/models_1"; export { __MetadataBearer }; export { $Command }; export interface DeleteTableCommandInput extends DeleteTableRequest {} export interface DeleteTableCommandOutput extends DeleteTableResponse, __MetadataBearer {} declare const DeleteTableCommand_base: { new ( input: DeleteTableCommandInput ): import("@smithy/core/client").CommandImpl< DeleteTableCommandInput, DeleteTableCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( input: DeleteTableCommandInput ): import("@smithy/core/client").CommandImpl< DeleteTableCommandInput, DeleteTableCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; export declare class DeleteTableCommand extends DeleteTableCommand_base { protected static __types: { api: { input: DeleteTableRequest; output: {}; }; sdk: { input: DeleteTableCommandInput; output: DeleteTableCommandOutput; }; }; }