/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * @hidden
 */
export interface IndentRule {
    node: string;
    style: string;
    rtlStyle: string;
    step: number;
    unit: string;
}
/**
 * @hidden
 */
export interface IndentationRules {
    nodes: Array<IndentRule>;
    listsTypes: {
        orderedList: string;
        bulletList: string;
        listItem: string;
    };
}
/**
 * @hidden
 */
export declare const indentRules: IndentationRules;
/**
 * @hidden
 */
export declare const outdentRules: IndentationRules;
