import { type FC, type HTMLAttributes, type PropsWithChildren, type ReactElement, type ReactNode } from 'react';
import type { HeadingLevels } from '../types/common';
import '../styles/components/tile.scss';
type Props = {
/**
* The tile title
*/
title: ReactNode;
/**
* The tile title heading level
*/
headingLevel?: Exclude;
/**
* The tile subtitle
*/
subtitle?: ReactNode;
/**
* The background color
*/
backgroundColor?: string;
/**
* The background image
*/
backgroundImage?: ReactNode;
/**
* Whether to create a gradient based on the backgroung color or not
*/
gradient?: boolean;
/**
* The width Tile square (css value). By default it will use the
* width of the provided container.
*/
width?: string;
/**
* Whether to slide up the description when the mouse is over the tile.
* Can be useful if the description text is long.
*/
descriptionSlideUp?: boolean;
/**
* Target/link of the list item when clicking on it
*/
link?: ReactElement<{
[key: string]: unknown;
}>;
};
export declare const Tile: FC & HTMLAttributes>;
export default Tile;
//# sourceMappingURL=tile.d.ts.map