import './SkeletonCircle.css'; import { CSSProperties } from 'react'; import { PropsWithHTMLAttributes } from '../../../utils/types/PropsWithHTMLAttributes'; type SkeletonCircleProps = PropsWithHTMLAttributes<{ size: CSSProperties['width'] & CSSProperties['height']; }, HTMLDivElement>; export declare const SkeletonCircle: ({ className, size, style, ...otherProps }: SkeletonCircleProps) => import("react/jsx-runtime").JSX.Element; export {};