import * as React from 'react'; import { SkeletonAvatarProps } from './Avatar'; import { SkeletonTitleProps } from './Title'; import { SkeletonParagraphProps } from './Paragraph'; export interface SkeletonProps { active?: boolean; loading?: boolean; prefixCls?: string; className?: string; children?: React.ReactNode; avatar?: SkeletonAvatarProps | boolean; title?: SkeletonTitleProps | boolean; paragraph?: SkeletonParagraphProps | boolean; } declare class Skeleton extends React.Component { static defaultProps: Partial; render(): {} | null | undefined; } export default Skeleton;