import { ComponentPropsWithoutRef } from 'react'; import { LayoutUtilProps } from '../../types'; /** * Props for the SkeletonCircle component * @extends Omit, "children"> * @extends Omit */ export type SkeletonCircleProps = Omit, "children"> & Omit & { /** * The diameter of the circular skeleton in CSS units. * @default 32px */ diameter?: string; /** * Enables the AI visual style with blue gradient colors. */ ai?: boolean; }; /** * SkeletonCircle component for displaying circular loading placeholders. * * Features: * - Circular skeleton placeholder with customizable diameter * - Animated pulsing effect for loading indication * - Accessible with proper ARIA attributes * - Layout utility props for positioning and spacing * - Customizable styling through className and style props * - Progress bar role for screen readers * * @example * * * */ export declare const SkeletonCircle: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref">, "children"> & Omit & { /** * The diameter of the circular skeleton in CSS units. * @default 32px */ diameter?: string; /** * Enables the AI visual style with blue gradient colors. */ ai?: boolean; } & import('react').RefAttributes>;