export function getClosestLiEls(selector: any): any[]; /** * Unhide elements that are hidden by default and that should be visible * according to the snippet visibility option. */ export function unhideConditionalElements(): void; export function setUtmsHtmlDataset(): void; /** * Performs a basic check to make sure a link's protocol is http(s), mainly to * deny `javascript:` URLs. * * @param {string} link * @returns {URL|""} URL if the protocol is http(s), empty string otherwise */ export function verifyHttpsUrl(link: string): URL | ""; export class EventBus extends EventTarget { trigger(name: any, payload: any): void; }