import React from 'react'; import { BorderRadius, TypeSize } from '../../../types'; declare type SkeletonWidth = 'full' | number; declare type SkeletonHeight = number; declare type SkeletonType = TypeSize; export interface SkeletonLoaderProps extends React.HTMLAttributes { /** * The width of the skeleton loader. 'full' for 100% width or number for px value. */ width?: SkeletonWidth; /** * The height of the skeleton loader in pixels */ height?: SkeletonHeight; /** * The border radius size of the skeleton loader */ borderRadius?: BorderRadius; /** * Whether to animate the skeleton loader */ animate?: boolean; /** * Preset type that automatically sets height based on typography */ type?: SkeletonType; } declare const SkeletonLoader: React.ForwardRefExoticComponent>; export default SkeletonLoader;