import type { BoxProps } from "../Box"; interface DisplayProps { display?: "grid" | "inline-grid"; } export type GridProps = Omit & DisplayProps; export {};