export interface InteractionInfo { /** Click time */ c?: number; /** Click attribution identifier */ ci?: string; /** Click X position */ cx?: number; /** Click Y position */ cy?: number; /** Key press time */ k?: number; /** Key press attribution identifier */ ki?: string; /** Scroll time */ s?: number; } /** * Get the interaction attribution name for an element */ export declare function interactionAttributionForElement(el: Element): string;