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

export type ImageWrapperProps = CommonComponentPropertys & BoxProps<'img'> & {
    rootInjection: ReactNode;
};
export declare const ImageWrapper: (props: ImageWrapperProps) => import("react/jsx-runtime").JSX.Element;
