import type { GridContent as Content } from "./GridContent";
export interface GridContainer {
    format?: any;
    contents?: Content[];
    children?: any;
    area?: string;
    direction?: "row" | "col";
    gap?: number | {
        row?: number;
        col?: number;
    };
    width?: number | string | {
        min?: number | string;
        max?: number | string;
    };
    height?: number | string | {
        min?: number | string;
        max?: number | string;
    };
    responsive?: {
        device: "desktop" | "laptop" | "tablet" | "mobile";
        area?: string;
        direction?: "row" | "col";
        gap?: number | {
            row?: number;
            col?: number;
        };
        width?: number | string | {
            min?: number | string;
            max?: number | string;
        };
        height?: number | string | {
            min?: number | string;
            max?: number | string;
        };
    }[];
    style?: object;
    scroll?: boolean;
    fullsize?: boolean;
}
export default function GridContainer(props: GridContainer): import("react").JSX.Element;
//# sourceMappingURL=GridContainer.d.ts.map