import React from 'react'; type UserRef = ((instance: T | null) => void) | React.RefObject | null | undefined; declare const useComposedRef: (libRef: React.MutableRefObject, userRef: UserRef) => (instance: T | null) => void; export default useComposedRef;