import type { ReactNode } from "react"; /** * Получает текст с неразрывными пробелами * @param text{String} * @returns {String} */ declare const getStrWithSpaces: (text: string) => string; /** * Получает дочерние компоненты с исправленным текстом * @param children{ReactNode} * @returns {ReactElement} */ declare const getFormattedChildren: (children: ReactNode) => ReactNode; export { getFormattedChildren, getStrWithSpaces, };