import type { LegacyRef, RefCallback, RefObject } from "react"; /** * Given an array of refs, merge them into a single ref callback. * This is useful for cases where you need to pass a multiple refs to a component. */ export declare function mergeRefs(refs: Array | LegacyRef | undefined | null>): RefCallback;