import React from "react"; import { SpaceProps, GridProps } from "styled-system"; import { TagProps } from "../../../__internal__/utils/helpers/tags/tags"; /** * @deprecated `GridContainer` has been deprecated. See the Carbon documentation for migration details. */ export interface GridContainerProps extends SpaceProps, GridProps, React.HTMLAttributes, TagProps { /** Defines the Components to be rendered within the GridContainer. Requires GridItemProps */ children?: React.ReactNode; } /** * @deprecated `GridContainer` has been deprecated. See the Carbon documentation for migration details. */ export declare const GridContainer: (props: GridContainerProps) => React.JSX.Element; export default GridContainer;