import React from "react"; import { TagProps } from "../../../__internal__/utils/helpers/tags/tags"; import { StyledGridItemProps } from "./grid-item.style"; /** * @deprecated `GridItem` has been deprecated. See the Carbon documentation for migration details. */ export interface GridItemProps extends StyledGridItemProps, React.HTMLAttributes, TagProps { /** Defines the Component(s) to be rendered within the GridItem */ children?: React.ReactNode; } /** * @deprecated `GridItem` has been deprecated. See the Carbon documentation for migration details. */ export declare const GridItem: { (props: GridItemProps): React.JSX.Element; displayName: string; }; export default GridItem;