import { VariantProps } from 'class-variance-authority'; import * as React from "react"; declare const gridboxVariants: (props?: ({ column?: "one" | "two" | "three" | "four" | "five" | "six" | null | undefined; reasponsive?: "twoColumn" | "threeColumn" | "fourColumn" | null | undefined; items?: "center" | "end" | "default" | "baseline" | "stretch" | null | undefined; justify?: "center" | "end" | "default" | "between" | "around" | "evenly" | null | undefined; gap?: "sm" | "lg" | "md" | "xs" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; export interface GridboxProps extends React.HTMLAttributes, VariantProps { } declare const GridBox: React.ForwardRefExoticComponent>; export { GridBox, gridboxVariants };