import { BoxProps } from '@mui/material';
import { CSSProperties, ReactNode } from 'react';
import { CommonComponentPropertys } from '../../componentProperty';

export type BoxWrapperProps = CommonComponentPropertys & {
    children?: ReactNode;
    rootInjection: ReactNode;
    sx?: BoxProps['sx'] & CSSProperties;
};
export declare const BoxWrapper: (props: BoxWrapperProps) => import("react/jsx-runtime").JSX.Element;
