import { default as React, HTMLAttributes } from 'react'; export interface TileProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: Cypress, * Testing Library, and Jest). */ testId?: string; } declare const Tile: React.ForwardRefExoticComponent>; export default Tile; //# sourceMappingURL=Tile.d.ts.map