/** * @fileOverview Customized */ import React, { Component, FunctionComponent, ReactElement } from 'react'; type Comp
= FunctionComponent
| Component
| ReactElement
; export type Props
> = P & { component: C; }; /** * custom svg elements by rechart instance props and state. * @returns {Object} svg elements */ export declare function Customized
>({ component, ...props }: Props
): React.JSX.Element; export declare namespace Customized { var displayName: string; } export {};