/*!
 * Jodit Editor (https://xdsoft.net/jodit/)
 * Released under MIT see LICENSE.txt in the project root for license information.
 * Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net
 */
declare module 'jodit/config' {
    interface Config {
        select: {
            /**
             * When the user selects the elements of the list - from the beginning to
             * the end from the inside - when copying, we change the selection
             * to cover the entire selected container
             *
             * `<ul><li>|test|</li></ul>` will be `|<ul><li>test</li></ul>|`
             * `<ul><li>|test|</li><li>|test</li></ul>` will be `<ul>|<li>test</li><li>|test</li></ul>`
             */
            normalizeSelectionBeforeCutAndCopy: boolean;
            /**
             * Normalize selection after triple click
             *
             * `<ul><li>|test</li><li>|pop</li></ul>` will be `<ul><li>|test|</li><li>pop</li</ul>|`
             */
            normalizeTripleClick: boolean;
        };
    }
}
export {};
