import * as React from 'react'; declare type widthUnit = number | string; export interface SkeletonParagraphProps { prefixCls?: string; className?: string; style?: object; width?: widthUnit | Array; rows?: number; } export declare class Paragraph extends React.Component { static defaultProps: { width: string; rows: number; }; private getWidth; render(): JSX.Element; } export {};