import * as React from "react"; /** * Higher order Group component. * Much of the implementation of a Group is the same as the Node, since a group is a node but with children... * See: https://medium.com/@franleplant/react-higher-order-components-in-depth-cf9032ee6c3e#.z5a94mm1b * * @returns {Group} */ export declare class Group extends React.Component { constructor(wrappedNode: any); render(): JSX.Element; }