import React from 'react'; import type { Props } from '../_utils/types'; import type { HeroMediaProps, HeroTextProps, InteractableTileProps, LinkTileProps, Roles, TileProps, TileRef } from './NextTile.types'; export declare const InteractableTile: React.ForwardRefExoticComponent & React.RefAttributes>; export declare const LinkTile: React.ForwardRefExoticComponent & React.RefAttributes>; declare function TileInner({ role, ...props }: TileProps, ref: TileRef): React.JSX.Element | null; /** * can be used as single checkbox as well as in group. * * Single * ``` * console.log(value) /> * console.log(value) /> * ``` * * Group * ``` * console.log(value)> * * * * ``` * * @since 11.6.0 */ export declare const NextTile: ((props: TileProps & { ref?: TileRef | undefined; }) => ReturnType) & { Actions: React.ForwardRefExoticComponent>; Content: React.ForwardRefExoticComponent>; Footer: React.ForwardRefExoticComponent>; HeroText: React.ForwardRefExoticComponent>; HeroMedia: React.ForwardRefExoticComponent>; }; export {};