import { Ref } from 'react';

declare function mergeRefs<T>(...refs: (Ref<T> | undefined | null)[]): Ref<T> | undefined;

export { mergeRefs };
