export declare const RadarChart: { new (props: import("./generateCategoricalChart").CategoricalChartProps): { readonly eventEmitterSymbol: Symbol; clipPathId: string; accessibilityManager: import("./AccessibilityManager").AccessibilityManager; throttleTriggeredAfterMouseMove: import("lodash").DebouncedFunc<(e: import("./generateCategoricalChart").MousePointer) => any>; container?: HTMLElement; componentDidMount(): void; displayDefaultTooltip(): void; getSnapshotBeforeUpdate(prevProps: Readonly, prevState: Readonly): null; componentDidUpdate(prevProps: import("./generateCategoricalChart").CategoricalChartProps): void; componentWillUnmount(): void; getTooltipEventType(): import("../util/types").TooltipEventType; getMouseInfo(event: import("./generateCategoricalChart").MousePointer): { xValue: any; yValue: any; chartX: number; chartY: number; } | { activeTooltipIndex: number; activeLabel: any; activePayload: any[]; activeCoordinate: import("../util/types").ChartCoordinate; chartX: number; chartY: number; }; inRange(x: number, y: number, scale?: number): any; parseEventsOfWrapper(): any; addListener(): void; removeListener(): void; handleLegendBBoxUpdate: (box: DOMRect) => void; handleReceiveSyncEvent: (cId: string | number, data: import("./types").CategoricalChartState, emitter: Symbol) => void; handleBrushChange: ({ startIndex, endIndex }: { startIndex: number; endIndex: number; }) => void; handleMouseEnter: (e: import("react").MouseEvent) => void; triggeredAfterMouseMove: (e: import("./generateCategoricalChart").MousePointer) => any; handleItemMouseEnter: (el: any) => void; handleItemMouseLeave: () => void; handleMouseMove: (e: import("./generateCategoricalChart").MousePointer & Partial, keyof import("./generateCategoricalChart").MousePointer>>) => void; handleMouseLeave: (e: any) => void; handleOuterEvent: (e: import("react").MouseEvent | import("react").TouchEvent) => void; handleClick: (e: import("react").MouseEvent) => void; handleMouseDown: (e: import("react").MouseEvent | import("react").Touch) => void; handleMouseUp: (e: import("react").MouseEvent | import("react").Touch) => void; handleTouchMove: (e: import("react").TouchEvent) => void; handleTouchStart: (e: import("react").TouchEvent) => void; handleTouchEnd: (e: import("react").TouchEvent) => void; triggerSyncEvent: (data: import("./types").CategoricalChartState) => void; applySyncEvent: (data: import("./types").CategoricalChartState) => void; filterFormatItem(item: any, displayName: any, childIndex: any): any; renderCursor: (element: import("react").ReactElement>) => import("react").JSX.Element; renderPolarAxis: (element: any, displayName: string, index: number) => import("react").DetailedReactHTMLElement<{ className: any; key: any; ticks: import("../util/types").TickItem[]; type?: "number" | "category"; dataKey?: import("../util/types").DataKey; hide?: boolean; scale?: Function | import("../util/types").ScaleType; tick?: boolean | import("react").SVGProps | import("react").ReactElement> | ((props: any) => import("react").ReactElement>); tickCount?: number; axisLine?: boolean | import("react").SVGProps; tickLine?: boolean | import("react").SVGProps; tickSize?: number; tickFormatter?: (value: any, index: number) => string; allowDataOverflow?: boolean; allowDuplicatedCategory?: boolean; allowDecimals?: boolean; domain?: import("../util/types").AxisDomain; includeHidden?: boolean; name?: string; unit?: string | number; axisType?: import("../util/types").AxisType; range?: number[]; AxisComp?: any; label?: string | number | object | import("react").ReactElement>; }, HTMLElement>; renderPolarGrid: (element: import("react").ReactElement>) => import("react").ReactElement>; renderLegend: () => import("react").ReactElement>; renderTooltip: () => import("react").ReactElement>; renderBrush: (element: import("react").ReactElement>) => import("react").ReactElement>; renderReferenceElement: (element: import("react").ReactElement>, displayName: string, index: number) => import("react").ReactElement>; renderActivePoints: ({ item, activePoint, basePoint, childIndex, isRange }: any) => import("react").ReactElement>[]; renderGraphicChild: (element: import("react").ReactElement>, displayName: string, index: number) => any[]; renderCustomized: (element: import("react").ReactElement>, displayName: string, index: number) => import("react").ReactElement>; renderClipPath(): import("react").JSX.Element; getXScales(): { [x: string]: Function | import("../util/types").ScaleType; }; getYScales(): { [x: string]: Function | import("../util/types").ScaleType; }; getXScaleByAxisId(axisId: string): Function | import("../util/types").ScaleType; getYScaleByAxisId(axisId: string): Function | import("../util/types").ScaleType; getItemByXY(chartXY: { x: number; y: number; }): { graphicalItem: any; payload: any; }; renderMap: { CartesianGrid: { handler: (element: import("react").ReactElement>) => import("react").ReactElement>; once: boolean; }; ReferenceArea: { handler: (element: import("react").ReactElement>, displayName: string, index: number) => import("react").ReactElement>; }; ReferenceLine: { handler: (element: import("react").ReactElement>) => import("react").ReactElement>; }; ReferenceDot: { handler: (element: import("react").ReactElement>, displayName: string, index: number) => import("react").ReactElement>; }; XAxis: { handler: (element: import("react").ReactElement>) => import("react").ReactElement>; }; YAxis: { handler: (element: import("react").ReactElement>) => import("react").ReactElement>; }; Brush: { handler: (element: import("react").ReactElement>) => import("react").ReactElement>; once: boolean; }; Bar: { handler: (element: import("react").ReactElement>, displayName: string, index: number) => any[]; }; Line: { handler: (element: import("react").ReactElement>, displayName: string, index: number) => any[]; }; Area: { handler: (element: import("react").ReactElement>, displayName: string, index: number) => any[]; }; Radar: { handler: (element: import("react").ReactElement>, displayName: string, index: number) => any[]; }; RadialBar: { handler: (element: import("react").ReactElement>, displayName: string, index: number) => any[]; }; Scatter: { handler: (element: import("react").ReactElement>, displayName: string, index: number) => any[]; }; Pie: { handler: (element: import("react").ReactElement>, displayName: string, index: number) => any[]; }; Funnel: { handler: (element: import("react").ReactElement>, displayName: string, index: number) => any[]; }; Tooltip: { handler: (element: import("react").ReactElement>) => import("react").JSX.Element; once: boolean; }; PolarGrid: { handler: (element: import("react").ReactElement>) => import("react").ReactElement>; once: boolean; }; PolarAngleAxis: { handler: (element: any, displayName: string, index: number) => import("react").DetailedReactHTMLElement<{ className: any; key: any; ticks: import("../util/types").TickItem[]; type?: "number" | "category"; dataKey?: import("../util/types").DataKey; hide?: boolean; scale?: Function | import("../util/types").ScaleType; tick?: boolean | import("react").SVGProps | import("react").ReactElement> | ((props: any) => import("react").ReactElement>); tickCount?: number; axisLine?: boolean | import("react").SVGProps; tickLine?: boolean | import("react").SVGProps; tickSize?: number; tickFormatter?: (value: any, index: number) => string; allowDataOverflow?: boolean; allowDuplicatedCategory?: boolean; allowDecimals?: boolean; domain?: import("../util/types").AxisDomain; includeHidden?: boolean; name?: string; unit?: string | number; axisType?: import("../util/types").AxisType; range?: number[]; AxisComp?: any; label?: string | number | object | import("react").ReactElement>; }, HTMLElement>; }; PolarRadiusAxis: { handler: (element: any, displayName: string, index: number) => import("react").DetailedReactHTMLElement<{ className: any; key: any; ticks: import("../util/types").TickItem[]; type?: "number" | "category"; dataKey?: import("../util/types").DataKey; hide?: boolean; scale?: Function | import("../util/types").ScaleType; tick?: boolean | import("react").SVGProps | import("react").ReactElement> | ((props: any) => import("react").ReactElement>); tickCount?: number; axisLine?: boolean | import("react").SVGProps; tickLine?: boolean | import("react").SVGProps; tickSize?: number; tickFormatter?: (value: any, index: number) => string; allowDataOverflow?: boolean; allowDuplicatedCategory?: boolean; allowDecimals?: boolean; domain?: import("../util/types").AxisDomain; includeHidden?: boolean; name?: string; unit?: string | number; axisType?: import("../util/types").AxisType; range?: number[]; AxisComp?: any; label?: string | number | object | import("react").ReactElement>; }, HTMLElement>; }; Customized: { handler: (element: import("react").ReactElement>, displayName: string, index: number) => import("react").ReactElement>; }; }; render(): import("react").JSX.Element; context: any; setState(state: import("./types").CategoricalChartState | ((prevState: Readonly, props: Readonly) => import("./types").CategoricalChartState | Pick) | Pick, callback?: () => void): void; forceUpdate(callback?: () => void): void; readonly props: Readonly & Readonly<{ children?: import("react").ReactNode; }>; state: Readonly; refs: { [key: string]: import("react").ReactInstance; }; shouldComponentUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): boolean; componentDidCatch?(error: Error, errorInfo: import("react").ErrorInfo): void; componentWillMount?(): void; UNSAFE_componentWillMount?(): void; componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void; UNSAFE_componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void; componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void; UNSAFE_componentWillUpdate?(nextProps: Readonly, nextState: Readonly, nextContext: any): void; }; displayName: string; defaultProps: import("./generateCategoricalChart").CategoricalChartProps; getDerivedStateFromProps: (nextProps: import("./generateCategoricalChart").CategoricalChartProps, prevState: import("./types").CategoricalChartState) => import("./types").CategoricalChartState; renderActiveDot: (option: any, props: any) => import("react").ReactElement>; contextType?: import("react").Context; };