import type { MutableRefObject } from 'react'; type Ref = ((instance: T | null) => void) | MutableRefObject; export declare function mergeRefs(...refs: (Ref | null)[]): Ref; export {};