export default Grid;
declare function Grid({ container, item, xs, sm, md, lg, xl, spacing, direction, justifyContent, alignItems, className, style, children, ...props }: {
    [x: string]: any;
    container?: boolean | undefined;
    item?: boolean | undefined;
    xs: any;
    sm: any;
    md: any;
    lg: any;
    xl: any;
    spacing?: number | undefined;
    direction?: string | undefined;
    justifyContent?: string | undefined;
    alignItems?: string | undefined;
    className?: string | undefined;
    style?: {} | undefined;
    children: any;
}): import("react/jsx-runtime").JSX.Element;
declare namespace Grid {
    let displayName: string;
}
//# sourceMappingURL=Grid.d.ts.map