import React from 'react';
import type { TileSkeletonProps } from './types';
/**
 * __Tile Skeleton__
 *
 * A tile skeleton is the loading state for the tile component.
 *
 */
export default function TileSkeleton({ color, isShimmering, shimmeringEndColor, size, testId, }: TileSkeletonProps): React.JSX.Element;
