Type Alias Component

Component: {
    boundProps?: ({
        [k: string]: any;
    } | ((props: Props, renderContext: RenderContext) => {
        [k: string]: any;
    }))[];
    propTypes?: PropTypes;
    (props: any, injectHandles: RenderContext): JSXElement;
}