import React from "react"; interface Props { width?: string; height?: string; borderRadius?: string; className?: string; } declare const Shimmer: ({ width, height, borderRadius, className }: Props) => React.JSX.Element; export default Shimmer;