import { default as React } from 'react'; interface ShimmerDivProps extends React.HTMLAttributes { level?: 1 | 2 | 3 | 4 | 5 | 6; animation?: 'shimmer' | 'pulse'; loadingLabel?: string; repeat?: number; gap?: string | number; } declare function ShimmerDiv({ className, level, animation, loadingLabel, repeat, gap, children, style, ...rest }: ShimmerDivProps): React.JSX.Element; export default ShimmerDiv;