import React from 'react';
export interface CnSkeletonParagraphProps {
    /**
     * 自定义内联样式
     */
    style?: React.CSSProperties;
    /**
     * 自定义类名
     */
    className?: string;
    /**
     * 是否需要动画
     * @default false
     */
    animated?: boolean;
    /**
     * 展示行数
     * @default 1
     */
    lineCount?: number;
}
