import { Command as $Command } from "@smithy/core/client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlueClient"; import { SearchTablesRequest } from "../models/models_2"; import { SearchTablesResponse } from "../models/models_3"; export { __MetadataBearer }; export { $Command }; export interface SearchTablesCommandInput extends SearchTablesRequest {} export interface SearchTablesCommandOutput extends SearchTablesResponse, __MetadataBearer {} declare const SearchTablesCommand_base: { new ( input: SearchTablesCommandInput ): import("@smithy/core/client").CommandImpl< SearchTablesCommandInput, SearchTablesCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( ...[input]: [] | [SearchTablesCommandInput] ): import("@smithy/core/client").CommandImpl< SearchTablesCommandInput, SearchTablesCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; export declare class SearchTablesCommand extends SearchTablesCommand_base { protected static __types: { api: { input: SearchTablesRequest; output: SearchTablesResponse; }; sdk: { input: SearchTablesCommandInput; output: SearchTablesCommandOutput; }; }; }