import * as React from 'react'; interface Props { className?: string; /** * The animation. * If `false` the animation effect is disabled. */ animation?: 'pulse' | 'wave' | false; /** * The component used for the root node. * Either a string to use a HTML element or a component. */ component?: React.ElementType; /** * The type of content that will be rendered. */ variant?: 'text' | 'rect' | 'circle'; /** * Height of the skeleton. * Useful when you don't want to adapt the skeleton to a text element but for instance a card. */ height?: number | string; /** * Width of the skeleton. * Useful when the skeleton is inside an inline element with no width of its own. */ width?: number | string; style?: React.CSSProperties; } export declare const Skeleton: React.ForwardRefExoticComponent>; export {};