import React from 'react'; import { ContentType } from './Label'; import { DataKey } from '../util/types'; interface Data { value?: number | string | Array; payload?: any; } interface Props { id?: string; data: Array; valueAccessor?: Function; clockWise?: boolean; dataKey?: DataKey; content?: ContentType; } declare function LabelList(props: Props): JSX.Element; declare namespace LabelList { var displayName: string; var renderCallByParent: (parentProps: any, data: T[], ckeckPropsLabel?: boolean) => JSX.Element[]; var defaultProps: { valueAccessor: (entry: Data) => React.ReactText; }; } export default LabelList;