import type { EditorAnalyticsAPI } from '@atlaskit/editor-common/analytics/api';
import type { InteractivitySnapshot } from './interactivity-snapshot';
/**
 * Sends a snapshot as the `editor interactivity` event.
 *
 * Does nothing without the analytics plugin: an editor without it has nowhere to send events,
 * and the collector keeps measuring either way.
 */
export declare function fireInteractivityEvent(analytics: EditorAnalyticsAPI | undefined, snapshot: InteractivitySnapshot): void;
