import React from "react"; import { BoxProps } from "@mui/material/Box"; import { IBreadcrumbsProps } from "../Breadcrumb/Breadcrumbs"; export interface IHeaderProps { title: string; breadcrumbprops?: IBreadcrumbsProps; children?: React.ReactNode; containerProps?: BoxProps; childrenContainerProps?: BoxProps; titleContainerProps?: BoxProps; navigateBack?: () => void; navigateBackIconProps?: any; badgeProps?: { count: string | number; color?: string; }; } declare const Header: ({ title, breadcrumbprops, children, containerProps, childrenContainerProps, titleContainerProps, navigateBack, navigateBackIconProps, badgeProps, }: IHeaderProps) => import("react/jsx-runtime").JSX.Element; export default Header;