import React from 'react'; export interface SkeletonProps extends React.HTMLAttributes { /** Appearance of Skeleton */ variant?: 'circle' | 'block'; /** Height of Skeleton */ height?: number | string; /** Width of Skeleton */ width?: number | string; /** Whether to active animation */ animation?: boolean; } /** * Display a placeholder preview of component before the data gets loaded, it can help to the user aware and that the data is processing. */ declare const Skeleton: React.ForwardRefExoticComponent>; export default Skeleton;