export interface ICardProps { className?: string; config?: ICardConfig; title?: string; operateText?: string; needFold?: boolean; foldStatus?: boolean; headSticky?: boolean; stickyTransparentTitle?: boolean; stickyTop?: string; divider?: boolean; onOperateClick?: (e: any) => void; onFoldChange?: () => void; onTitleSticky?: (status: any) => void; } export interface ICardConfig { foldTapArea?: 'btn' | 'header'; } export declare const CardDefaultProps: ICardProps;