import React from 'react';
import { type IconTileProps } from '../../types';
/**
 * __IconTile__
 *
 * An icon with background shape, color, and size properties determined by Tile.
 */
export default function IconTile({ appearance, icon: Icon, label, size, testId, shape, UNSAFE_circleReplacementComponent, }: IconTileProps): React.JSX.Element;
