import React from 'react'; import type { Colors, Dimensions, MarginModifierProp, ModifierClassProp, Radii } from '../types'; interface SkeletonLoaderProps extends ModifierClassProp, MarginModifierProp { /** * Defaults to `true`. If `false`, the skeleton loader will not animate. */ animated?: boolean; /** * The color of the skeleton loader background, default is `gray-50`. */ backgroundColor?: Colors; /** * The duration, in seconds, of the skeleton loader animation. Default is `1.25`. */ duration?: number; /** * The height of the skeleton loader, default is `1`. */ height?: Dimensions; /** * The highlight color of the skeleton loader's animation, default is `gray-200`. */ highlightColor?: Colors; /** * The border radius of the skeleton loader, default is `med`. */ radius?: Radii; /** * The width of the skeleton loader, default is `100%`. */ width?: Dimensions; } export declare function SkeletonLoader({ _modifierClass, animated, backgroundColor, duration, height, highlightColor, margin, radius, width, ...rest }: SkeletonLoaderProps): React.JSX.Element; export {};