/**
 * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
 */
/**
 * @module track-changes/integrations/legacylistproperties
 */
import { Plugin } from '@ckeditor/ckeditor5-core';
import type { SuggestionDescription } from '../suggestiondescriptionfactory.js';
import { type Suggestion } from '../suggestion.js';
/**
  * Provides track changes plugin integration for list properties feature.
  */
export declare class TrackChangesLegacyListProperties extends Plugin {
    /**
      * @inheritDoc
      */
    afterInit(): void;
    handleListStyleCommand(executeCommand: Function, options?: {
        type?: string | null;
    }): void;
    handleListReversedCommand(executeCommand: Function, options?: {
        reversed?: boolean;
    }): void;
    handleListStartCommand(executeCommand: Function, options?: {
        startIndex?: number;
    }): void;
    handleDescriptions(suggestion: Suggestion): SuggestionDescription | undefined;
}
