/// import type { SkeletonItemProps } from '../types'; /** * __Skeleton item__ * * A skeleton item is used in place of an item when its contents it not ready. * * - [Examples](https://atlaskit.atlassian.com/packages/design-system/menu/docs/skeleton-item) * - [Code](https://atlaskit.atlassian.com/packages/design-system/menu) */ declare const SkeletonItem: ({ hasAvatar, hasIcon, isShimmering, isSideNavSkeleton, testId, width, xcss, }: SkeletonItemProps) => JSX.Element; export default SkeletonItem;