import React from 'react';
interface SkeletonProps {
    children: React.ReactNode;
    loading?: boolean;
    style?: React.CSSProperties;
}
declare const Skeleton: React.FC<SkeletonProps>;
export default Skeleton;
