import * as React from 'react'; export declare type RenderFunction = (props?: any, children?: any) => Element; export declare type Element = React.ReactElement; export declare type RenderComponentType

= React.ComponentClass

| React.ClassicComponentClass

| Element | RenderFunction; export declare const RenderComponentPropType: React.Requireable; export declare function renderComponent(component: RenderComponentType, props?: {}, children?: any): React.ReactElement;