import type { MutableRefObject, ForwardedRef, RefCallback } from "react"; /** * Compose 2+ refs. Useful when a reusable component needs a ref itself, but * consumers may also need the ref. */ declare const composeRefs: (...refs: (ForwardedRef | MutableRefObject | RefCallback)[]) => RefCallback; export { composeRefs };