type ReactRef = React.RefCallback | React.MutableRefObject | null | undefined; /** * Custom hook that merges multiple refs (callback refs or MutableRefObject refs) into a single callback ref. * This allows a single DOM element or component instance to be referenced by multiple sources. * * @template T The type of the element or component being referenced. * @param refs - An array of refs (React.RefCallback or React.MutableRefObject) to merge. * @returns {React.RefCallback} A single memoized callback ref that assigns the instance to all provided refs. */ export declare const useMergeRefs: (...refs: ReactRef[]) => React.RefCallback; export {};