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