import React from 'react'; import type { Props } from '../_utils/types'; import type { HeroMediaProps, HeroTextProps, InteractableTileProps, LinkTileProps, SelectableTileProps, TileProps } from './Tile.types'; export declare const InteractableTile: React.ForwardRefExoticComponent & React.RefAttributes>; export declare const LinkTile: React.ForwardRefExoticComponent & React.RefAttributes>; export declare const SelectableTile: React.ForwardRefExoticComponent & React.RefAttributes>; export declare const Tile: React.ForwardRefExoticComponent> & { Actions: React.ForwardRefExoticComponent>; Content: React.ForwardRefExoticComponent>; Footer: React.ForwardRefExoticComponent>; HeroText: React.ForwardRefExoticComponent>; HeroMedia: React.ForwardRefExoticComponent>; };