import * as React from 'react'; import { AnchorProps } from '../Anchor'; export interface MetroInfoTileProps extends AnchorProps { /** * The source URL of an icon, if used. The icon scaled to max. 33% of the tile. */ image?: string; /** * The title of the tile, if anything. */ title?: string; } /** * Provides a simple tile component that gives a flat info appareance. */ export declare const MetroInfoTile: React.SFC & { inner: { readonly Tile: any; readonly StyledTileIcon: any; readonly TileTitle: any; }; };