import React from 'react';
import type { BasicComponentProps } from "../../../types";
export interface CnSkeletonProps extends BasicComponentProps {
    /**
     * 自定义内联样式
     */
    style?: React.CSSProperties;
    /**
     * 自定义类名
     */
    className?: string;
    /**
     * 是否需要动画
     * @default false
     */
    animated?: boolean;
}
