import { BoxProps } from '@chakra-ui/react'; type SkeletonCircleProps = BoxProps; /** * SkeletonCircle renders a loading animation for a given circle. It works great as a placeholder to avoid layout shifts. */ declare const SkeletonCircle: (props: SkeletonCircleProps) => JSX.Element; export { SkeletonCircle, SkeletonCircleProps };