import React from 'react'; interface Props { width?: number; squared?: boolean; rounded?: boolean; component?: keyof JSX.IntrinsicElements; className?: string; show?: boolean; minHeight?: number; animate?: boolean; height?: number; } type NativeAttrs = Omit, keyof Props>; export type SkeletonProps = Props & NativeAttrs; declare const Skeleton: React.ForwardRefExoticComponent>; export default Skeleton;