import * as React from "react"; export declare type ContainerProps = { children: any; variant: "container"; alignItems?: "items-start" | "items-end" | "items-center" | "items-baseline" | "items-stretch"; containerClassName?: string; direction?: "row" | "column"; innerItemClassName?: never; itemClassName?: never; justifyContent?: "justify-start" | "justify-end" | "justify-center" | "justify-between" | "justify-around" | "justify-evenly"; lg?: never; md?: never; order?: never; sm?: never; spacing?: 1 | 2 | 3 | 4; wrap?: "wrap" | "no-wrap"; xl?: never; xs?: never; }; export declare type ItemProps = { children: any; variant: "item"; alignItems?: never; containerClassName?: never; direction?: never; innerItemClassName?: string; itemClassName?: string; justifyContent?: never; lg?: SpanProps; md?: SpanProps; order?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "first" | "last"; sm?: SpanProps; spacing?: never; wrap?: never; xl?: SpanProps; xs?: SpanProps; }; declare type SpanProps = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12; declare type CombinedProps = ContainerProps | ItemProps; declare const Grid: React.FC; export default Grid;