import { JSX } from './jsx/jsx-namespace'; declare function cloneElement(element: any, props: any): any; declare function map(children: T | T[] | null, fn: (child: T | null) => any): any; declare function compare(nextElement: T | T[] | null, lastElement: T | T[] | null, callback: (next: T | T[] | null, last: T | T[] | null) => any): any; declare function toArray(element: T | T[] | null): T[] | null; declare const Children: { cloneElement: typeof cloneElement; map: typeof map; toArray: typeof toArray; compare: typeof compare; }; export default Children;