type SkeletonProps = { width: string | number; height: string | number; /** * Controls the border radius, or rounding of the skeleton's corners. */ borderRadius?: string | number; /** * Overrides the default color of skeleton, and overrides the default shimmering start color if ShimmeringEndColor also provided. */ color?: string; /** * Overrides the default shimmering ending color of skeleton. */ ShimmeringEndColor?: string; /** * Enables the shimmering animation. */ isShimmering?: boolean; /** * Applied as a data-attribute. Use this to target groups of skeletons with the same name (e.g. for applying custom styles) * ``` * groupName="my-skeleton" ->
* ``` */ groupName?: string; testId?: string; }; /** * __Skeleton__ * * A skeleton acts as a placeholder for content, usually while the content loads. * * - [Examples](https://atlassian.design/components/skeleton/examples) * - [Code](https://atlassian.design/components/skeleton/code) */ declare const Skeleton: ({ width, height, borderRadius, color, ShimmeringEndColor, isShimmering, groupName, testId, }: SkeletonProps) => JSX.Element; export default Skeleton;