import React, { CSSProperties } from 'react'; import { TextConfig } from '../type'; declare const Text: React.MemoExoticComponent<({ config, val, style, suffix }: { config: TextConfig; val: string; style: CSSProperties; suffix: JSX.Element; }) => React.JSX.Element>; export default Text;