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