import React from 'react'; export interface Props { /** * 卡片头部头像 */ avatar?: React.ReactNode; /** * 卡片头部操作 */ action?: React.ReactNode; /** * 卡片头部主标题 */ title: string; /** * 卡片头部副标题 */ subheader?: string; } /** * * CardHeader 卡片头部组件 */ export default function CardHeader({ avatar, action, title, subheader, }: Props): JSX.Element;