import React from 'react'; import { PrefixIconIconEDProps } from '../../Icon/PropsType'; interface ContainerDropBoxProps extends React.HTMLProps { _component: any; canDrag: boolean; } export interface MyCollapseEDProps { ContainerDropBox: React.FC; _component: any; id: string; className?: string; name?: string; style?: React.CSSProperties; collapseType?: string; size?: any; headerColor?: string; hasIcon?: boolean; cardIconType?: string; defaultActiveKey?: string[]; titleColor?: string; prefixIcon?: PrefixIconIconEDProps; forwardRef?: any; titleFont?: string; titleLineHeight?: string; titleFontWeight?: number; subTitleColor?: string; subTitleFont?: string; subTitleLineHeight?: string; subTitleFontWeight?: number; customExtraHeader?: boolean; } export interface WrapperCollapseProps { children: React.ReactElement; } declare const MyCollapseED: React.FC; export default MyCollapseED;