type RefType = React.Ref | React.RefObject | React.ForwardedRef; /** * Custom hook to merge multiple refs into a single ref callback. * * @template T - The type of element the ref will reference * @param refs - Any number of refs or ref functions to merge * @returns A callback ref that assigns the value to all provided refs */ export declare const useMultipleRefs: (...refs: Array>) => (value: T | null) => void; export {}; //# sourceMappingURL=useMultipleRefs.d.ts.map