import type { LocalParticipant } from 'livekit-client'; export type DomEvent = { type: 'click'; ref: string | null; role: string; name: string; timestamp: number; } | { type: 'navigation'; from: string; to: string; title: string; timestamp: number; } | { type: 'submit'; ref: string | null; formName: string; action: string; timestamp: number; } | { type: 'mutation'; summary: string; addedRefs: string[]; removedRefs: string[]; timestamp: number; }; interface DomEventListenerOptions { onTriggerEvent?: () => void; } export declare function installDomEventListeners(localParticipant: LocalParticipant, options?: DomEventListenerOptions): () => void; export {};