import type { FC, HTMLProps } from 'react' import type { CircleProps } from './Circle' import type { TextProps } from './Text' import { Box } from './Box' import { Circle } from './Circle' import { Text } from './Text' export const Skeleton: { Box: FC> Circle: FC Text: FC } = { Box, Circle, Text, }