import React from 'react'; export interface SkeletonParagraphProps { rows?: number; width?: number | string | number[] | string[]; } export interface SkeletonProps { title?: boolean; titleColor?: string; backgroundColor?: string; active?: boolean; avatar?: boolean; loading?: boolean; image?: boolean; fade?: boolean; paragraph?: SkeletonParagraphProps; repetitions?: number; space?: number; customize?: React.ReactNode; style?: React.CSSProperties; children?: React.ReactNode; } declare const Skeleton: (props: SkeletonProps) => JSX.Element; export default Skeleton;