import type { ReactNode } from 'react'; import { isNativeHtmlStructure } from './isNativeHtmlStructure'; import { isTruthyReactNode } from './isTruthyNode'; export function isTruthyNativeHtmlStructure(node: ReactNode): boolean { return isTruthyReactNode(node) && isNativeHtmlStructure(node); }