/// import { colorIndex } from "../../constants/colors/colors.types"; export interface SkeletonDefaultProps { width?: string; height?: string; color?: colorIndex; } export interface SkeletonAvatarProps { size?: string; color?: colorIndex; } export interface SkeletonParagraphProps { width?: string; height?: string; rows?: number; gap?: string; color?: colorIndex; } export interface SkeletonComponsition { Avatar: React.FC; Paragraph: React.FC; Image: React.FC; }