import * as CSS from "csstype"; import { ReactNode } from "react"; import { GridProps } from "./Grid"; import { ResponsiveProp } from "./system/types"; export declare type AutoGridProps = { children?: ReactNode; columns?: ResponsiveProp; minChildWidth?: ResponsiveProp; gap?: GridProps["gridGap"]; gapX?: GridProps["gridColumnGap"]; gapY?: GridProps["gridRowGap"]; }; export declare const AutoGrid: ({ children, columns, minChildWidth, gap, gapX, gapY, }: AutoGridProps) => import("@emotion/react/jsx-runtime").JSX.Element;