import { EventEmitter } from "../../stencil-public-runtime"; /** * Fetches and displays most popular searches from Klevu Merchant center * @csspart popular-searches-base The container for the popular searches * @csspart popular-searches-caption The caption for the search * @csspart popular-searches-list-item The list item in search */ export declare class KlevuPopularSearches { #private; /** * Caption of the list */ tCaption: string; popularSearches: string[]; /** * Event that is emitted when a popular search is clicked */ klevuPopularSearchClicked: EventEmitter; connectedCallback(): Promise; render(): any; }