import { ReactNode } from 'react'; /** * Check if a ReactNode is truthy * * @param node - The ReactNode to check * @returns True if the node is not null, undefined, or false */ export declare function isTruthyReactNode(node: ReactNode): node is Exclude;