import { Component, FunctionComponent, ReactElement } from 'react'; declare type Comp
= FunctionComponent
| Component
| ReactElement
; export declare type Props
> = P & { component: C; }; export declare function Customized
>({ component, ...props }: Props
): JSX.Element; export declare namespace Customized { var displayName: string; } export {};