/**
 * @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 operations-compressor/operationcompressor/markeroperationcompressor
 */
import { OperationCompressor } from './operationcompressor.js';
import type { DecompressionInput } from '../compressor.js';
import type { MarkerOperation } from '@ckeditor/ckeditor5-engine';
export declare class MarkerOperationCompressor extends OperationCompressor {
    /**
     * @inheritDoc
     */
    decompress(result: Array<MarkerOperation>, input: DecompressionInput): void;
}
