export interface BoxProps {
    children?: React.ReactNode;
    className?: string;
    p?: number;
    m?: number;
    shadow?: string;
    rounded?: "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full";
    id?: string;
}
declare const Box: React.FC<BoxProps>;
export default Box;
