import type { GridProps as MuiGridProps } from "@mui/material/Grid"; import type { GridLegacyProps as MuiGridLegacyProps } from "@mui/material/GridLegacy"; import type { FC } from "react"; export interface GridProps extends MuiGridProps { /** * The `item` prop has been deprecated and may be safely removed. * * @deprecated */ item?: boolean; /** * Named breakpoint props have been deprecated and moved to the `size` prop. * * @deprecated */ lg?: MuiGridLegacyProps["lg"]; /** * Named breakpoint props have been deprecated and moved to the `size` prop. * * @deprecated */ md?: MuiGridLegacyProps["md"]; /** * Named breakpoint props have been deprecated and moved to the `size` prop. * * @deprecated */ sm?: MuiGridLegacyProps["sm"]; /** * Named breakpoint props have been deprecated and moved to the `size` prop. * * @deprecated */ xs?: MuiGridLegacyProps["xs"]; /** * Named breakpoint props have been deprecated and moved to the `size` prop. * * @deprecated */ xl?: MuiGridLegacyProps["xl"]; /** * The `zeroMinWidth` property has been deprecated and can be safely * removed. * * @deprecated */ zeroMinWidth?: boolean; } declare const Grid: FC; export default Grid;