import type { CollapsePanelProps } from 'antd/lib/collapse/CollapsePanel'; import React from 'react'; import type { PrefixIconIconEDProps } from '../../Icon/PropsType'; import { LingXiEdFC } from '@lingxiteam/types'; interface ContainerDropBoxProps extends React.HTMLProps { _component: any; } export interface MyCollapsePanelEDProps extends CollapsePanelProps { ContainerDropBox: React.FC; _component: any; name?: string; hasIcon?: boolean; cardIconType?: string; titleColor?: string; headerColor?: string; backgroundType?: any; prefixIcon?: PrefixIconIconEDProps; subTitle?: string; titleFont?: string; titleLineHeight?: string; titleFontWeight?: number; subTitleColor?: string; subTitleFont?: string; subTitleLineHeight?: string; subTitleFontWeight?: number; customExtraHeader?: boolean; } declare const MyCollapsePanelED: LingXiEdFC; export default MyCollapsePanelED;