import React from 'react'; import type { CollapsePanelProps } from 'antd/lib/collapse'; import type { PrefixIconIconProps } from '../Icon/PropsType'; export interface MyCollapsePanelProps extends CollapsePanelProps { hasIcon?: boolean; visible: boolean; cardIconType: string; titleColor: string; headerColor?: string; backgroundType?: any; appId?: string; prefixIcon?: PrefixIconIconProps; getEngineApis?: any; subTitle?: string; } declare const CollapsePanel: React.ForwardRefExoticComponent>; export default CollapsePanel;