import type { PropsFor } from "../../types.js"; export type GridSpanProps = PropsFor<"div", { /** Columns to span (default `1`) */ cols?: number; /** Columns to span for 600px and wider */ small?: number; /** Columns to span for 960px and wider */ medium?: number; /** Columns to span for 1280px and wider */ large?: number; /** Columns to span for 1600px and wider */ xl?: number; /** Columns to span for 1920px and wider */ xxl?: number; }>; declare const GridSpan: import("react").ForwardRefExoticComponent>; export default GridSpan;