import React from "react"; /** * Merge and deep copy the values of all of the enumerable own properties of target object from source object to a new object * @param target The target object to get properties from. * @param source The source object from which to copy properties. * @return A new merged and deep copied object. */ export declare const mergeDeep: (target: T, source: S) => T & S; export declare function removeFragment(element: JSX.Element): any; export declare const mergeChildren: (...components: React.ReactNode[]) => React.ReactNode[];