import { Property } from "csstype"; import { ResponsiveValue, SizeScaleValue } from "../../styled-system/types"; import { ElementType, HTMLHopeProps } from "../types"; import { GridOptions } from "./grid"; export interface SimpleGridOptions extends GridOptions { /** * The width at which child elements will break into columns. * Pass a number for pixel values or a string for any other valid CSS length. */ minChildWidth?: ResponsiveValue | number>; /** * The number of columns */ columns?: ResponsiveValue; } export declare type SimpleGridProps = HTMLHopeProps; /** * SimpleGrid make its easy to create responsive grid layouts. */ export declare function SimpleGrid(props: SimpleGridProps): import("solid-js").JSX.Element; export declare namespace SimpleGrid { var toString: () => string; } //# sourceMappingURL=simple-grid.d.ts.map