import { CSSProperties } from 'react'; interface SkeletonTextProps { width?: string | number; height?: string | number; bgcolor?: CSSProperties['backgroundColor']; } declare const SkeletonText: ({ width, height, bgcolor }: SkeletonTextProps) => JSX.Element; export default SkeletonText;