UNPKG

@cmk/fe_utils

Version:
9 lines (7 loc) 361 B
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;