import React, { FC } from 'react'; interface IProps { /** * @description Text to display */ children: string | number | Array | undefined | null; /** * @description Display content when character is empty */ emptyNode?: React.ReactNode; /** * @description Conditions for judging that characters are blank */ emptyConditions?: Array; } declare const Text: FC; export default Text;