import { CSSProperties } from 'react'; import { AnimateType } from './Skeleton'; export interface SkeletonCircleProps { /** * SkeletonCircle `size`. */ size: number | string; /** * SkeletonCircle animation type. * @default * flicker */ animate?: AnimateType; /** * Skeleton color * @default * rgba(0,0,0,0.08) */ color?: string; /** * Skeleton wave color on wave animate. * @default * rgba(0,0,0,0.1) */ waveColor?: string; /** * Skeleton animation duration in seconds. * @default * 2 */ duration?: number; /** * It true, `display: inline-block`. or `display: block`. */ inline?: boolean; /** * SkeletonCircle's style. */ extraStyle?: CSSProperties; } export declare function SkeletonCircle({ size, animate, duration, color, waveColor, inline, extraStyle, }: SkeletonCircleProps): JSX.Element; export declare namespace SkeletonCircle { var version: string; var displayName: string; }