import React from 'react'; import './index.less'; export interface PisellStatisticListProps extends React.HTMLAttributes { isHasBorder?: boolean; backgroundColors?: string[]; labelColor?: string; valueColor?: string; data: { label: string; value: string; isLink?: boolean; link?: string; tip?: string; onClick?: () => void; children?: { label: string; value: string; }[]; }[]; } declare const PisellStatisticList: (props: PisellStatisticListProps) => React.JSX.Element; export default PisellStatisticList;