import { JSX } from "react";
export interface BoxProps {
    children: JSX.Element[] | JSX.Element;
    size: string;
}
