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;
