import React, { CSSProperties } from 'react'; declare function LargeScreenComponentCard(props: ILargeScreenComponentCard): React.JSX.Element; export default LargeScreenComponentCard; export interface ILargeScreenComponentCard { list: IList[]; cardStyle?: ICardStyle[]; change?: Function; styles?: React.CSSProperties; cardLoading?: boolean; height?: number; sceneEvent?: Function; } export interface IList { key?: string; title?: string; styleType?: string; cardList?: any; activeIndex?: number | string; } export interface ICardStyle { [key: string]: string | number | boolean | object | CSSProperties; }