/**
 * Copyright (c) ACT, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 *
 * @prettier
 */
import { AppBarProps } from '@mui/material/AppBar';
import { FC, ReactElement } from 'react';
import { RenderLogoProps } from './RenderLogo';
import { RenderNavigationItemProps } from './RenderNavigationItem';
export interface AppBarNavigationProps {
    appBarHeight?: number;
    AppBarProps?: AppBarProps;
    headerRightElement?: ReactElement<unknown>;
    RenderLogoProps: RenderLogoProps;
    navigationItems: RenderNavigationItemProps[];
}
export declare const AppBarNavigation: FC<AppBarNavigationProps>;
export default AppBarNavigation;
//# sourceMappingURL=index.d.ts.map