import React from 'react'; import { BoxProps } from '../Box/Box'; interface SkeletonProps { width?: BoxProps['width']; height?: BoxProps['height']; borderRadius?: BoxProps['borderRadius']; style?: React.CSSProperties; } export declare function Skeleton({ width, height, borderRadius, style }: SkeletonProps): import("react/jsx-runtime").JSX.Element; export {};