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