import { CSSProperties, FC } from "react"; import "./index.scss"; interface IProps { type?: ESkeletonType; width?: string | number; height?: string | number; style?: CSSProperties; } export declare enum ESkeletonType { BOX = "box", AVATAR = "avatar", LINE = "line" } declare const Skeleton: FC; export default Skeleton;