import React from 'react'; import { useContainerBreakpoints } from '../internal/hooks/container-queries'; import { TilesProps } from './interfaces'; interface TileProps { item: TilesProps.TilesDefinition; selected: boolean; name: string; breakpoint: ReturnType[0]; onChange: TilesProps['onChange']; readOnly?: boolean; } export declare const Tile: React.ForwardRefExoticComponent>; export {};