import { Component, FunctionComponent } from 'react'; declare type Comp

= FunctionComponent

| Component

; declare type Props> = P & { component: C; }; declare function Customized>({ component, ...props }: Props): JSX.Element; declare namespace Customized { var displayName: string; } export default Customized;