import * as React from 'react'; import { StandardProps } from '..'; import { TypographyProps } from '../Typography'; export interface CardHeaderProps extends StandardProps, CardHeaderClassKey, 'title'> { action?: React.ReactNode; avatar?: React.ReactNode; component?: React.ElementType>; disableTypography?: boolean; subheader?: React.ReactNode; subheaderTypographyProps?: Partial; title?: React.ReactNode; titleTypographyProps?: Partial; } export type CardHeaderClassKey = 'root' | 'avatar' | 'action' | 'content' | 'title' | 'subheader'; declare const CardHeader: React.ComponentType; export default CardHeader;