import { ReactNode } from "react"; //#region src/Slots/utils/isDifferentTree.d.ts /** * Recursively checks if two ReactNode trees are structurally different. * * - Primitives: strict equality * - Arrays: length + recursive item diff * - Elements: type + key + props (shallow, ignoring children) + recursive children diff * * @param a - Previous React node tree. * @param b - Next React node tree. * @returns `true` when the trees differ, otherwise `false`. */ declare function isDifferentTree(a: ReactNode, b: ReactNode): boolean; //#endregion export { isDifferentTree }; //# sourceMappingURL=isDifferentTree.d.ts.map