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

export type PaperWrapperProps = PaperProps & {
    rootInjection: ReactNode;
} & CommonComponentPropertys;
export declare const PaperWrapper: (props: PaperWrapperProps) => import("react/jsx-runtime").JSX.Element;
