import type { CardProps } from 'antd/lib/card'; import React from 'react'; import { LingXiEdFC } from '@lingxiteam/types'; export interface ContainerDropBoxProps extends React.HTMLProps { _component: any; canDrag: boolean; } export interface MyCardEDProps extends CardProps { prefixIcon?: any; ContainerDropBox: React.FC; _component: any; name?: string; hasIcon?: boolean; hasHeader?: boolean; headerColor?: string; extend: any[]; cardIconType?: string; titleColor?: string; extendNum?: number; backgroundType?: any; subTitle?: string; titleFont?: string; titleLineHeight?: string; titleFontWeight?: number; subTitleColor?: string; subTitleFont?: string; subTitleLineHeight?: string; subTitleFontWeight?: number; customExtraHeader?: boolean; } declare type ExtendHeadProps = Pick; export declare const ExtendHeadBtn: LingXiEdFC; declare const MyCardED: LingXiEdFC; export default MyCardED;