import { PureComponent, CSSProperties, ReactNode } from 'react'; export declare type TooltipType = 'none'; export declare type ValueType = number | string | Array; export declare type NameType = number | string; export declare type Formatter = (value: TValue, name: TName, item: Payload, index: number, payload: Array>) => [TValue, TName] | TValue; export interface Payload { type?: TooltipType; color?: string; formatter?: Formatter; name?: TName; value?: TValue; unit?: ReactNode; dataKey?: string | number; payload?: any; chartType?: string; } export interface Props { separator?: string; wrapperClassName?: string; labelClassName?: string; formatter?: Formatter; contentStyle?: CSSProperties; itemStyle?: CSSProperties; labelStyle?: CSSProperties; labelFormatter?: (label: any, payload: Array>) => ReactNode; label?: any; payload?: Array>; itemSorter?: (item: Payload) => number | string; } export declare class DefaultTooltipContent extends PureComponent> { static displayName: string; static defaultProps: { separator: string; contentStyle: {}; itemStyle: {}; labelStyle: {}; }; renderContent(): JSX.Element; render(): JSX.Element; }