import { ReactNode } from 'react'; /** * --- * category: utilities/a11y * --- * Returns `true` if any of the children are not wrapped with [ScreenReaderContent](ScreenReaderContent). * @module hasVisibleChildren * @param children - A React component's children prop * @return whether any of the children are visible */ declare function hasVisibleChildren(children: ReactNode): boolean; export default hasVisibleChildren; export { hasVisibleChildren }; //# sourceMappingURL=hasVisibleChildren.d.ts.map