import { Ref, ReactNode, RefAttributes } from "react"; import { DOMProps } from "@react-types/shared"; import { ForwardedRefComponent } from "../../types/components"; export declare type ColumnarGridElementType = HTMLDivElement; export interface ColumnarGridProps extends RefAttributes, DOMProps { children?: ReactNode; /** The number of columns */ columns?: number; /** Whether this is an item inside a parent grid */ item?: boolean; /** How many columns the items spans */ span?: number | number[]; } export declare type ColumnarGridRef = Ref; declare const ColumnarGrid: ForwardedRefComponent; export { ColumnarGrid };