import * as React from "react"; import type { CardHeaderOwnProps, PolymorphicWithRef } from "../types"; import { CardHeaderAvatar } from "../CardHeaderAvatar"; import { CardHeaderAction } from "../CardHeaderAction"; import { BodyTypography } from "../BodyTypography"; import { TitleTypography } from "../TitleTypography"; declare type CardHeaderProps = PolymorphicWithRef, subheadProps: React.ComponentProps) => React.ReactElement; renderSubhead?: (Subhead: typeof BodyTypography, props: React.ComponentProps) => React.ReactElement; renderAction?: (Action: typeof CardHeaderAction, props: React.ComponentProps) => React.ReactElement; renderAvatar?: (Avatar: typeof CardHeaderAvatar, props: React.ComponentProps) => React.ReactElement; }>; declare type CardHeaderElement = (props: CardHeaderProps) => React.ReactElement>; declare const CardHeader: CardHeaderElement; export default CardHeader; //# sourceMappingURL=CardHeader.d.ts.map