import * as React from 'react'; /** * Takes an array of refs and returns a new ref which will apply any modification to all of the refs. * This is useful when you want to have the ref used in multiple places. * * ```tsx * const rootRef = React.useRef(null); * const refFork = useForkRef(rootRef, props.ref); * * return ( * * ); * ``` * * @param {Array | undefined>} refs The ref array. * @returns {React.RefCallback | null} The new ref callback. */ export default function useForkRef(...refs: Array | undefined>): React.RefCallback | null;