import React, { CSSProperties } from 'react'; declare function LargeScreenComponentCollapseItem(props: ILargeScreenComponentCollapseItem): React.JSX.Element; export default LargeScreenComponentCollapseItem; export interface ILargeScreenComponentCollapseItem { cardList?: ICardList[]; type?: string; span?: number; replaceIcon?: string; height?: number; showTitle?: boolean; showReplace?: boolean; showTag?: boolean; tagText?: string; hoverBox?: string; activeIndex?: number; tagStyle?: CSSProperties; wrapStyle?: any; imgOrIconStyle?: CSSProperties; titleStyle?: CSSProperties; imgStyle?: CSSProperties; replaceStyle?: CSSProperties; change?: Function; onClick?: Function; } export interface ICardList { key?: string; url?: string | React.ReactNode; hoverUrl?: string | React.ReactNode; title?: string; type?: string; active?: Boolean; }