import { ComponentProps, FunctionComponent, PropsWithChildren, ReactNode } from 'react'; import { Box, AppBarProps } from '@mui/material'; export declare type AppHeaderProps = { title?: ReactNode; subtitle?: ReactNode; icon?: ReactNode; actionsProps?: ComponentProps; } & AppBarProps; export declare const AppHeader: FunctionComponent>;