/// import { BoxProps } from '@mui/material/Box'; export interface ICardHeaderProps { title?: string; actions?: React.ReactNode; containerProps?: BoxProps; } declare const CardHeader: ({ title, actions, containerProps }: ICardHeaderProps) => import("react/jsx-runtime").JSX.Element; export default CardHeader;