import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectClient"; import { SearchDataTablesResponse } from "../models/models_2"; import { SearchDataTablesRequest } from "../models/models_3"; export { __MetadataBearer }; export { $Command }; export interface SearchDataTablesCommandInput extends SearchDataTablesRequest {} export interface SearchDataTablesCommandOutput extends SearchDataTablesResponse, __MetadataBearer {} declare const SearchDataTablesCommand_base: { new ( input: SearchDataTablesCommandInput ): import("@smithy/smithy-client").CommandImpl< SearchDataTablesCommandInput, SearchDataTablesCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( input: SearchDataTablesCommandInput ): import("@smithy/smithy-client").CommandImpl< SearchDataTablesCommandInput, SearchDataTablesCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; export declare class SearchDataTablesCommand extends SearchDataTablesCommand_base { protected static __types: { api: { input: SearchDataTablesRequest; output: SearchDataTablesResponse; }; sdk: { input: SearchDataTablesCommandInput; output: SearchDataTablesCommandOutput; }; }; }