import React from "react";
import { FontStyle, SizeStyle, ElementProps, GridStyle } from "../generator";
export interface GridProps extends FontStyle, SizeStyle, ElementProps, GridStyle {
    children?: React.ReactNode;
    background?: string;
    max?: boolean;
}
export declare const Grid: {
    (props: GridProps): JSX.Element;
    Item: (props: any) => JSX.Element;
};
export default Grid;
//# sourceMappingURL=index.d.ts.map