import { FC } from 'react'; interface SkeletonBaseProps { /** Overwrite className */ className?: string; /** Set the height of skeleton */ height?: string | number; /** Set a max-width */ maxWidth?: string | number; /** Set radius to skeleton */ radius?: string | number; /** Set the width of skeleton */ width?: string | number; } declare const SkeletonBase: FC; export default SkeletonBase;