import { ReactNode } from "react"; import { GridProps as SystemGridProps } from "./system"; export declare type GridProps = { children?: ReactNode; } & SystemGridProps; export declare const Grid: ({ children, ...props }: GridProps) => import("@emotion/react/jsx-runtime").JSX.Element;