@yamada-ui/charts 1.5.6 → 1.5.7-dev-20241110143958

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,7 @@
1
+ import * as recharts_types_util_types from 'recharts/types/util/types';
2
+ import * as recharts_types_chart_types from 'recharts/types/chart/types';
3
+ import * as lodash from 'lodash';
4
+ import * as recharts_types_chart_AccessibilityManager from 'recharts/types/chart/AccessibilityManager';
1
5
  import * as recharts_types_chart_generateCategoricalChart from 'recharts/types/chart/generateCategoricalChart';
2
6
  import * as react from 'react';
3
7
  import * as _yamada_ui_utils from '@yamada-ui/utils';
@@ -95,7 +99,327 @@ declare const useLineChart: ({ connectNulls, curveType, data, fillOpacity, layou
95
99
  __prefix?: string;
96
100
  }[];
97
101
  setHighlightedArea: react.Dispatch<react.SetStateAction<string | null>>;
98
- getLineChartProps: PropGetter<recharts_types_chart_generateCategoricalChart.CategoricalChartProps, recharts_types_chart_generateCategoricalChart.CategoricalChartProps>;
102
+ getLineChartProps: PropGetter<Omit<recharts_types_chart_generateCategoricalChart.CategoricalChartProps & react.RefAttributes<{
103
+ readonly eventEmitterSymbol: Symbol;
104
+ clipPathId: string;
105
+ accessibilityManager: recharts_types_chart_AccessibilityManager.AccessibilityManager;
106
+ throttleTriggeredAfterMouseMove: lodash.DebouncedFunc<(e: recharts_types_chart_generateCategoricalChart.MousePointer) => any>;
107
+ container?: HTMLElement;
108
+ componentDidMount(): void;
109
+ displayDefaultTooltip(): void;
110
+ getSnapshotBeforeUpdate(prevProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, prevState: Readonly<recharts_types_chart_types.CategoricalChartState>): null;
111
+ componentDidUpdate(prevProps: recharts_types_chart_generateCategoricalChart.CategoricalChartProps): void;
112
+ componentWillUnmount(): void;
113
+ getTooltipEventType(): recharts_types_util_types.TooltipEventType;
114
+ getMouseInfo(event: recharts_types_chart_generateCategoricalChart.MousePointer): {
115
+ xValue: any;
116
+ yValue: any;
117
+ chartX: number;
118
+ chartY: number;
119
+ } | {
120
+ activeTooltipIndex: number;
121
+ activeLabel: any;
122
+ activePayload: any[];
123
+ activeCoordinate: recharts_types_util_types.ChartCoordinate;
124
+ chartX: number;
125
+ chartY: number;
126
+ };
127
+ inRange(x: number, y: number, scale?: number): any;
128
+ parseEventsOfWrapper(): any;
129
+ addListener(): void;
130
+ removeListener(): void;
131
+ handleLegendBBoxUpdate: (box: DOMRect) => void;
132
+ handleReceiveSyncEvent: (cId: string | number, data: recharts_types_chart_types.CategoricalChartState, emitter: Symbol) => void;
133
+ handleBrushChange: ({ startIndex, endIndex }: {
134
+ startIndex: number;
135
+ endIndex: number;
136
+ }) => void;
137
+ handleMouseEnter: (e: react.MouseEvent<Element, MouseEvent>) => void;
138
+ triggeredAfterMouseMove: (e: recharts_types_chart_generateCategoricalChart.MousePointer) => any;
139
+ handleItemMouseEnter: (el: any) => void;
140
+ handleItemMouseLeave: () => void;
141
+ handleMouseMove: (e: recharts_types_chart_generateCategoricalChart.MousePointer & Partial<Omit<react.MouseEvent<Element, MouseEvent>, keyof recharts_types_chart_generateCategoricalChart.MousePointer>>) => void;
142
+ handleMouseLeave: (e: any) => void;
143
+ handleOuterEvent: (e: react.MouseEvent<Element, MouseEvent> | react.TouchEvent<Element>) => void;
144
+ handleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
145
+ handleMouseDown: (e: react.MouseEvent<Element, MouseEvent> | react.Touch) => void;
146
+ handleMouseUp: (e: react.MouseEvent<Element, MouseEvent> | react.Touch) => void;
147
+ handleTouchMove: (e: react.TouchEvent<Element>) => void;
148
+ handleTouchStart: (e: react.TouchEvent<Element>) => void;
149
+ handleTouchEnd: (e: react.TouchEvent<Element>) => void;
150
+ triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
151
+ applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
152
+ filterFormatItem(item: any, displayName: any, childIndex: any): any;
153
+ renderCursor: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.JSX.Element;
154
+ renderPolarAxis: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
155
+ renderPolarGrid: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
156
+ renderLegend: () => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
157
+ renderTooltip: () => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
158
+ renderBrush: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
159
+ renderReferenceElement: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
160
+ renderActivePoints: ({ item, activePoint, basePoint, childIndex, isRange }: any) => react.ReactElement<any, string | react.JSXElementConstructor<any>>[];
161
+ renderGraphicChild: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
162
+ renderCustomized: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
163
+ renderClipPath(): react.JSX.Element;
164
+ getXScales(): {
165
+ [x: string]: Function | recharts_types_util_types.ScaleType;
166
+ };
167
+ getYScales(): {
168
+ [x: string]: Function | recharts_types_util_types.ScaleType;
169
+ };
170
+ getXScaleByAxisId(axisId: string): Function | recharts_types_util_types.ScaleType;
171
+ getYScaleByAxisId(axisId: string): Function | recharts_types_util_types.ScaleType;
172
+ getItemByXY(chartXY: {
173
+ x: number;
174
+ y: number;
175
+ }): {
176
+ graphicalItem: any;
177
+ payload: any;
178
+ };
179
+ renderMap: {
180
+ CartesianGrid: {
181
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
182
+ once: boolean;
183
+ };
184
+ ReferenceArea: {
185
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
186
+ };
187
+ ReferenceLine: {
188
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
189
+ };
190
+ ReferenceDot: {
191
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
192
+ };
193
+ XAxis: {
194
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
195
+ };
196
+ YAxis: {
197
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
198
+ };
199
+ Brush: {
200
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
201
+ once: boolean;
202
+ };
203
+ Bar: {
204
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
205
+ };
206
+ Line: {
207
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
208
+ };
209
+ Area: {
210
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
211
+ };
212
+ Radar: {
213
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
214
+ };
215
+ RadialBar: {
216
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
217
+ };
218
+ Scatter: {
219
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
220
+ };
221
+ Pie: {
222
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
223
+ };
224
+ Funnel: {
225
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
226
+ };
227
+ Tooltip: {
228
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.JSX.Element;
229
+ once: boolean;
230
+ };
231
+ PolarGrid: {
232
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
233
+ once: boolean;
234
+ };
235
+ PolarAngleAxis: {
236
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
237
+ };
238
+ PolarRadiusAxis: {
239
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
240
+ };
241
+ Customized: {
242
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
243
+ };
244
+ };
245
+ render(): react.JSX.Element;
246
+ context: unknown;
247
+ setState<K extends keyof recharts_types_chart_types.CategoricalChartState>(state: recharts_types_chart_types.CategoricalChartState | ((prevState: Readonly<recharts_types_chart_types.CategoricalChartState>, props: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>) => recharts_types_chart_types.CategoricalChartState | Pick<recharts_types_chart_types.CategoricalChartState, K>) | Pick<recharts_types_chart_types.CategoricalChartState, K>, callback?: () => void): void;
248
+ forceUpdate(callback?: () => void): void;
249
+ readonly props: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>;
250
+ state: Readonly<recharts_types_chart_types.CategoricalChartState>;
251
+ refs: {
252
+ [key: string]: react.ReactInstance;
253
+ };
254
+ shouldComponentUpdate?(nextProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, nextState: Readonly<recharts_types_chart_types.CategoricalChartState>, nextContext: any): boolean;
255
+ componentDidCatch?(error: Error, errorInfo: react.ErrorInfo): void;
256
+ componentWillMount?(): void;
257
+ UNSAFE_componentWillMount?(): void;
258
+ componentWillReceiveProps?(nextProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, nextContext: any): void;
259
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, nextContext: any): void;
260
+ componentWillUpdate?(nextProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, nextState: Readonly<recharts_types_chart_types.CategoricalChartState>, nextContext: any): void;
261
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, nextState: Readonly<recharts_types_chart_types.CategoricalChartState>, nextContext: any): void;
262
+ }>, "ref">, Omit<recharts_types_chart_generateCategoricalChart.CategoricalChartProps & react.RefAttributes<{
263
+ readonly eventEmitterSymbol: Symbol;
264
+ clipPathId: string;
265
+ accessibilityManager: recharts_types_chart_AccessibilityManager.AccessibilityManager;
266
+ throttleTriggeredAfterMouseMove: lodash.DebouncedFunc<(e: recharts_types_chart_generateCategoricalChart.MousePointer) => any>;
267
+ container?: HTMLElement;
268
+ componentDidMount(): void;
269
+ displayDefaultTooltip(): void;
270
+ getSnapshotBeforeUpdate(prevProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, prevState: Readonly<recharts_types_chart_types.CategoricalChartState>): null;
271
+ componentDidUpdate(prevProps: recharts_types_chart_generateCategoricalChart.CategoricalChartProps): void;
272
+ componentWillUnmount(): void;
273
+ getTooltipEventType(): recharts_types_util_types.TooltipEventType;
274
+ getMouseInfo(event: recharts_types_chart_generateCategoricalChart.MousePointer): {
275
+ xValue: any;
276
+ yValue: any;
277
+ chartX: number;
278
+ chartY: number;
279
+ } | {
280
+ activeTooltipIndex: number;
281
+ activeLabel: any;
282
+ activePayload: any[];
283
+ activeCoordinate: recharts_types_util_types.ChartCoordinate;
284
+ chartX: number;
285
+ chartY: number;
286
+ };
287
+ inRange(x: number, y: number, scale?: number): any;
288
+ parseEventsOfWrapper(): any;
289
+ addListener(): void;
290
+ removeListener(): void;
291
+ handleLegendBBoxUpdate: (box: DOMRect) => void;
292
+ handleReceiveSyncEvent: (cId: string | number, data: recharts_types_chart_types.CategoricalChartState, emitter: Symbol) => void;
293
+ handleBrushChange: ({ startIndex, endIndex }: {
294
+ startIndex: number;
295
+ endIndex: number;
296
+ }) => void;
297
+ handleMouseEnter: (e: react.MouseEvent<Element, MouseEvent>) => void;
298
+ triggeredAfterMouseMove: (e: recharts_types_chart_generateCategoricalChart.MousePointer) => any;
299
+ handleItemMouseEnter: (el: any) => void;
300
+ handleItemMouseLeave: () => void;
301
+ handleMouseMove: (e: recharts_types_chart_generateCategoricalChart.MousePointer & Partial<Omit<react.MouseEvent<Element, MouseEvent>, keyof recharts_types_chart_generateCategoricalChart.MousePointer>>) => void;
302
+ handleMouseLeave: (e: any) => void;
303
+ handleOuterEvent: (e: react.MouseEvent<Element, MouseEvent> | react.TouchEvent<Element>) => void;
304
+ handleClick: (e: react.MouseEvent<Element, MouseEvent>) => void;
305
+ handleMouseDown: (e: react.MouseEvent<Element, MouseEvent> | react.Touch) => void;
306
+ handleMouseUp: (e: react.MouseEvent<Element, MouseEvent> | react.Touch) => void;
307
+ handleTouchMove: (e: react.TouchEvent<Element>) => void;
308
+ handleTouchStart: (e: react.TouchEvent<Element>) => void;
309
+ handleTouchEnd: (e: react.TouchEvent<Element>) => void;
310
+ triggerSyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
311
+ applySyncEvent: (data: recharts_types_chart_types.CategoricalChartState) => void;
312
+ filterFormatItem(item: any, displayName: any, childIndex: any): any;
313
+ renderCursor: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.JSX.Element;
314
+ renderPolarAxis: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
315
+ renderPolarGrid: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
316
+ renderLegend: () => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
317
+ renderTooltip: () => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
318
+ renderBrush: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
319
+ renderReferenceElement: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
320
+ renderActivePoints: ({ item, activePoint, basePoint, childIndex, isRange }: any) => react.ReactElement<any, string | react.JSXElementConstructor<any>>[];
321
+ renderGraphicChild: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
322
+ renderCustomized: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
323
+ renderClipPath(): react.JSX.Element;
324
+ getXScales(): {
325
+ [x: string]: Function | recharts_types_util_types.ScaleType;
326
+ };
327
+ getYScales(): {
328
+ [x: string]: Function | recharts_types_util_types.ScaleType;
329
+ };
330
+ getXScaleByAxisId(axisId: string): Function | recharts_types_util_types.ScaleType;
331
+ getYScaleByAxisId(axisId: string): Function | recharts_types_util_types.ScaleType;
332
+ getItemByXY(chartXY: {
333
+ x: number;
334
+ y: number;
335
+ }): {
336
+ graphicalItem: any;
337
+ payload: any;
338
+ };
339
+ renderMap: {
340
+ CartesianGrid: {
341
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
342
+ once: boolean;
343
+ };
344
+ ReferenceArea: {
345
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
346
+ };
347
+ ReferenceLine: {
348
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
349
+ };
350
+ ReferenceDot: {
351
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
352
+ };
353
+ XAxis: {
354
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
355
+ };
356
+ YAxis: {
357
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
358
+ };
359
+ Brush: {
360
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
361
+ once: boolean;
362
+ };
363
+ Bar: {
364
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
365
+ };
366
+ Line: {
367
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
368
+ };
369
+ Area: {
370
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
371
+ };
372
+ Radar: {
373
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
374
+ };
375
+ RadialBar: {
376
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
377
+ };
378
+ Scatter: {
379
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
380
+ };
381
+ Pie: {
382
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
383
+ };
384
+ Funnel: {
385
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => any[];
386
+ };
387
+ Tooltip: {
388
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.JSX.Element;
389
+ once: boolean;
390
+ };
391
+ PolarGrid: {
392
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
393
+ once: boolean;
394
+ };
395
+ PolarAngleAxis: {
396
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
397
+ };
398
+ PolarRadiusAxis: {
399
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
400
+ };
401
+ Customized: {
402
+ handler: (element: react.ReactElement<any, string | react.JSXElementConstructor<any>>, displayName: string, index: number) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
403
+ };
404
+ };
405
+ render(): react.JSX.Element;
406
+ context: unknown;
407
+ setState<K extends keyof recharts_types_chart_types.CategoricalChartState>(state: recharts_types_chart_types.CategoricalChartState | ((prevState: Readonly<recharts_types_chart_types.CategoricalChartState>, props: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>) => recharts_types_chart_types.CategoricalChartState | Pick<recharts_types_chart_types.CategoricalChartState, K>) | Pick<recharts_types_chart_types.CategoricalChartState, K>, callback?: () => void): void;
408
+ forceUpdate(callback?: () => void): void;
409
+ readonly props: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>;
410
+ state: Readonly<recharts_types_chart_types.CategoricalChartState>;
411
+ refs: {
412
+ [key: string]: react.ReactInstance;
413
+ };
414
+ shouldComponentUpdate?(nextProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, nextState: Readonly<recharts_types_chart_types.CategoricalChartState>, nextContext: any): boolean;
415
+ componentDidCatch?(error: Error, errorInfo: react.ErrorInfo): void;
416
+ componentWillMount?(): void;
417
+ UNSAFE_componentWillMount?(): void;
418
+ componentWillReceiveProps?(nextProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, nextContext: any): void;
419
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, nextContext: any): void;
420
+ componentWillUpdate?(nextProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, nextState: Readonly<recharts_types_chart_types.CategoricalChartState>, nextContext: any): void;
421
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<recharts_types_chart_generateCategoricalChart.CategoricalChartProps>, nextState: Readonly<recharts_types_chart_types.CategoricalChartState>, nextContext: any): void;
422
+ }>, "ref">>;
99
423
  getLineProps: RequiredPropGetter<{
100
424
  index: number;
101
425
  } & Partial<Recharts.LineProps>, Omit<Recharts.LineProps, "ref">>;