import React, { PropsWithChildren } from 'react'; import { TypographyProps } from '@mui/material'; type CardTitleProps = { title: string; className: string; override?: React.ReactNode; } & TypographyProps; declare const CardTitle: React.MemoExoticComponent<({ children, ...props }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element>; export default CardTitle; //# sourceMappingURL=CardTitle.d.ts.map