import { EventEmitter } from "../../stencil-public-runtime"; /** * Lists latest searches user has made on the site * @csspart latest-searches-caption The caption for the latest search list */ export declare class KlevuLatestSearches { #private; /** * Caption of the list */ tCaption: string; lastSearches: string[]; /** * Event that is emitted when a popular search is clicked */ klevuLastSearchClicked: EventEmitter; connectedCallback(): Promise; render(): any; }