import React from 'react'; import { BoxProps } from '@chakra-ui/react'; export interface CardProps extends Omit { /** 标题 */ title?: React.ReactNode; /** 副标题 */ subTitle?: React.ReactNode; subdued?: boolean; /** 加载中 */ loading?: boolean; /** 是否有边框 */ bordered?: boolean; /** 是否有阴影 */ boxShadow?: boolean; /** 右上角内容 */ extra?: React.ReactNode; /** 是否有 padding */ sectioned?: boolean; /** 页脚内容 */ footer?: React.ReactNode; /** 页脚位置 */ footerAlignment?: 'left' | 'right'; headerProps?: BoxProps; bodyProps?: BoxProps; footerProps?: BoxProps; } export declare const Card: React.ForwardRefExoticComponent>;