import { default as React } from 'react'; import { SxProps, Theme } from '@mui/material'; export interface HeaderTitleProps { title: string; breadcrumbItems?: string[]; icon?: React.ReactNode; type?: 'breadcrumb'; backgroundColor?: string; sx?: SxProps; } declare const HeaderTitle: ({ title, breadcrumbItems, icon, type, backgroundColor, sx, ...rest }: HeaderTitleProps) => JSX.Element; export default HeaderTitle;