import React, { FC } from 'react'; import { SxProps } from '@mui/material'; interface CardHeaderProps { title?: React.ReactNode; subTitle?: React.ReactNode; avatar?: React.ReactNode; sx?: SxProps; className?: string; } export declare const CardHeader: FC; export {};