/**
* 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.
*/exportdefaultfunction useCombinedRef<T>(...refs: Array<React.Ref<T> | undefined>): React.RefCallback<T>;