/// import { CssStyleType } from './types'; /** * 创建段落样式 * * 支持的样式属性: * * * 文本对齐方式 * * 文本颜色 * * 背景色(高亮) * * 字体 * * 粗体 * * 斜体 * * 字体大小 * * 首行缩进 * * 左边距 * * 右边距 * * 行间距(行高) * * @param style css样式表 */ declare const makeParagraphStyle: (style: CssStyleType) => JSX.Element; export default makeParagraphStyle;