import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { CloudSearchDomainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CloudSearchDomainClient"; import { SearchRequest, SearchResponse } from "../models/models_0"; export { __MetadataBearer }; export { $Command }; export interface SearchCommandInput extends SearchRequest {} export interface SearchCommandOutput extends SearchResponse, __MetadataBearer {} declare const SearchCommand_base: { new (input: SearchCommandInput): import("@smithy/smithy-client").CommandImpl< SearchCommandInput, SearchCommandOutput, CloudSearchDomainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new (input: SearchCommandInput): import("@smithy/smithy-client").CommandImpl< SearchCommandInput, SearchCommandOutput, CloudSearchDomainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; export declare class SearchCommand extends SearchCommand_base { protected static __types: { api: { input: SearchRequest; output: SearchResponse; }; sdk: { input: SearchCommandInput; output: SearchCommandOutput; }; }; }