/** * React hook that merges up to two React refs into a single memoized function React Ref * @param {import('react').Ref} refA * @param {import('react').Ref} [refB] */ export function useMergedRef(refA: import('react').Ref, refB?: React.Ref | undefined): ((node: any) => void) | null; import React from "react";