import React from 'react'; import { IComponentBaseProps } from '../types'; export type SkeletonProps = React.HTMLAttributes & IComponentBaseProps & {}; declare const Skeleton: React.ForwardRefExoticComponent & IComponentBaseProps & React.RefAttributes>; export default Skeleton;