import * as React from 'react'; import { BoxProps } from '../Box'; export interface SkeletonProps extends BoxProps { variant?: 'circular' | 'rounded'; width?: number | string; height?: number | string; } declare const Skeleton: React.ForwardRefExoticComponent & React.RefAttributes>; export default Skeleton;