import { type HTMLAttributes, type ReactElement } from 'react'; import { type OverrideClassName } from "../../types/OverrideClassName"; import { type InformationTileProps } from '../InformationTile'; import { type MultiActionTileProps } from '../MultiActionTile'; type TileProps = InformationTileProps | MultiActionTileProps; export type TileElement = ReactElement; export interface TileGridProps extends OverrideClassName> { children: TileElement[] | TileElement; } /** * @deprecated TileGrid is deprecated in v3 and will be removed in v4. * * {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3079077889/Tile#TileGrid Guidance} | * {@link https://cultureamp.design/storybook/?path=/docs/components-tiles-tilegrid--docs Storybook} */ export declare const TileGrid: { ({ children, classNameOverride, ...restProps }: TileGridProps): JSX.Element; displayName: string; }; export {};