/** * @fileOverview Customized */ import * as React from 'react'; import { Component, FunctionComponent, ReactElement } from 'react'; type Comp

= FunctionComponent

| Component

| ReactElement

; export type Props> = P & { /** * Render your components directly, without Customized wrapper. Will be removed in 4.0 * @deprecated * @example Before: `} />` * @example After: `` */ component: C; }; /** * Customized component used to be necessary to render custom elements in Recharts 2.x. * Starting from Recharts 3.x, all charts are able to render arbitrary elements anywhere, * and Customized is no longer needed. * * @example Before: `} />` * @example After: `` * * @deprecated Just render your components directly. Will be removed in 4.0 */ export declare function Customized>({ component, ...props }: Props): React.JSX.Element; export declare namespace Customized { var displayName: string; } export {};