import React, { Component } from 'react'; interface DataItemProps { title?: string; value?: string; } interface LightInfoCardProp { className?: string; style?: object; title?: string; dataSource?: Array; imgPlacement?: string; imgs?: Array; extra?: Array; onClickImg?: () => void; } export default class LightInfoCard extends Component { render(): JSX.Element; } export {};