/// /** * @param nodes nodes to clone * @param extraProps additional props to shallow merge in with props * Helper to clone React nodes and shallow merge in additional props * *Note that this will not merge in the additional props if the node is a native DOM element to avoid passing down invalid props to DOM elements* */ export default function cloneNodes(nodes: React.ReactNode, props: { [key: string]: any; }): React.ReactNode; //# sourceMappingURL=cloneNodes.d.ts.map