///
import { SkeletonProps } from '@chakra-ui/react';
export interface ISkeleton extends Omit {
}
/**
* Subcomponents of Skeleton
*/
export interface ISkeletonComponent {
SkeletonText: React.FC;
SkeletonCircle: React.FC;
}
export interface ISkeletonText extends ISkeleton {
}
export interface ISkeletonCircle extends ISkeleton {
}