import { MutableRefObject, Ref, RefObject } from "react"; type ReactRef = Ref | RefObject | MutableRefObject; /** * Combine multiple React refs into a single ref function. * This is used mostly when you need to allow consumers forward refs to * internal components * * @param refs refs to assign to value to */ export declare function mergeRefs(...refs: (ReactRef | undefined)[]): (node: T | null) => void; export {};