/*! * 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 */ import type { ICommitStyle, Nullable } from "../../../../types/index"; /** * Checks if child elements are suitable for applying styles. * An element is suitable for us only if it is the only significant child. * If the child matches then returns it. * @example * `selected` * @private */ export declare function getSuitChild(style: ICommitStyle, font: HTMLElement): Nullable;