import { EventEmitter } from "../../stencil-public-runtime"; /** * Component that displays a typical klevu banner * @slot default The banner slot * @csspart banner-image The image element */ export declare class KlevuBanner { #private; /** * The image url to display */ imageUrl: string; /** * The link url to navigate to */ linkUrl: string; /** * The alt text to display for iamge */ altText: string; /** * The target to open the link in */ target: "_blank" | "_self"; /** * Event emitted when the banner is clicked. Sends the link url as the event detail * * If defaultPrevented is called on the event, the link will not be followed */ klevuBannerClick: EventEmitter; render(): any; }