import * as React from 'react'; type widthUnit = number | string; export interface SkeletonParagraphProps { prefixCls?: string; className?: string; style?: React.CSSProperties; width?: widthUnit | Array; rows?: number; } declare const Paragraph: React.FC; export default Paragraph;