@cmk/fe_utils
Version:
frontend utility library
9 lines (7 loc) • 366 B
TypeScript
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;