import type { Node } from 'yoga-layout'; import type { NodeProps } from './props.js'; /** * Because all NodeProps are primitive types, we can make a simple comparison * and only request a reflow when necessary. We do that by checking the length * of the props object and then checking if all keys are the same and all values * are the same. */ export declare const propsChanged: (node: Node, props: NodeProps) => boolean;