import { ReactElement, ReactNode } from 'react'; /** * This file contains utility functions that can be reused across the project. */ /** * Originally made for LongForm component to find sources. * Walks the children of a React element and calls a callback function for each child. * * @param {ReactNode} children - The children of a React element. * @param {Function} callback - The callback function to call for each child. */ declare function walkChildren(children: ReactNode, callback: (el: ReactElement) => void): void; export { walkChildren }; //# sourceMappingURL=react.d.ts.map