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