import React from 'react'; import { CssStyleType } from './styles/types'; interface Props { /** * 指定样式 */ style?: CssStyleType; } /** * 文本组件 */ declare const Text: React.SFC; export default Text;