import type { UnsupportedContentLevelsTracking } from '@atlaskit/editor-common/utils';
import type { AnalyticsEventPayload } from './events';
type DispatchAnalyticsEvent = (event: AnalyticsEventPayload) => void;
type DocumentData = {
    appearance?: string;
    doc: any;
    rendererId: string;
};
export declare const trackUnsupportedContentLevels: (item: DocumentData, trackingOptions: UnsupportedContentLevelsTracking, dispatchAnalyticsEvent: DispatchAnalyticsEvent) => void;
export {};
