/** * Проверяет, является ли элемент созданным `react` * @returns {Boolean} Возвращает `true`, если у элемента найдены служебные React-ключи, иначе `false`. * @example * const root = document.getElementById("root"); * const isReactRoot = root ? _isReactNode(root) : false; */ export declare const _isReactNode: (node: Element) => boolean;