/**
 * Merges multiple refs (callback or object refs) into a single callback ref.
 * Handy when a component both forwards a ref and also needs its own internal ref.
 */
export declare function mergeRefs<T>(...refs: Array<React.Ref<T> | undefined>): React.RefCallback<T>;
