import { BaseComponentProps } from '../../types'; export interface SkeletonSetupProps { count?: number; baseColor?: string; highlightColor?: string; width?: string | number; height?: string | number; borderRadius?: string | number; circle?: boolean; inline?: boolean; duration?: number; direction?: 'ltr' | 'rtl'; enableAnimation?: boolean; } export interface SkeletonProps extends BaseComponentProps, SkeletonSetupProps { className?: string; containerClassName?: string; containerTestId?: string; style?: React.CSSProperties; }