UNPKG

@cmk/fe_utils

Version:
9 lines (7 loc) 366 B
import { AppBarProps } from '@mui/material'; import { ReactNode } from 'react'; import { CommonComponentPropertys } from '../../componentProperty'; export type AppBarWrapperProps = AppBarProps & { rootInjection: ReactNode; } & CommonComponentPropertys; export declare const AppBarWrapper: (props: AppBarWrapperProps) => import("react/jsx-runtime").JSX.Element;