import { CustomCodeComponentTracker } from './tracking'; /** * CustomCodeComponentClient * @description Track the view of a rendered custom code component * @param {HTMLElement} el - The custom code component * @param {TrackingData} trackingData - The tracking data */ declare class CustomCodeComponentClient { /** * Track the mount of a custom code component */ tracking: CustomCodeComponentTracker; constructor(el: Element); static init(rootEl?: Element): CustomCodeComponentClient[] | void; static destroy(components: CustomCodeComponentClient[]): void; } export default CustomCodeComponentClient;