/**
 * Combines multiple React refs into a single callback ref.
 *
 * Useful when a component needs to maintain an internal ref
 * while also forwarding a ref from props.
 */
export default function useCombinedRef<T>(...refs: Array<React.Ref<T> | undefined>): React.RefCallback<T>;
