/**
 * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
 */
/**
 * @module real-time-collaboration/realtimecollaborativetrackchanges
 * @publicApi
 */
import { Plugin } from 'ckeditor5/src/core.js';
import { CloudServicesTrackChangesAdapter } from './realtimecollaborativetrackchanges/cloudservicestrackchangesadapter.js';
import { RealTimeCollaborativeComments } from './realtimecollaborativecomments.js';
/**
 * Enables the real-time collaborative track changes feature.
 *
 * Check the {@glink features/collaboration/real-time-collaboration/real-time-collaboration-integration Real-time collaboration}
 * guide to see how to launch the editor in the real-time collaboration mode.
 */
export declare class RealTimeCollaborativeTrackChanges extends Plugin {
    /**
     * @inheritDoc
     */
    static get requires(): readonly [typeof RealTimeCollaborativeComments, typeof CloudServicesTrackChangesAdapter, "TrackChanges"];
    /**
     * @inheritDoc
     */
    static get pluginName(): "RealTimeCollaborativeTrackChanges";
    /**
     * @inheritDoc
     */
    static get isOfficialPlugin(): true;
    /**
     * @inheritDoc
     */
    static get isPremiumPlugin(): true;
}
