import type { Dispatch, SetStateAction, RefCallback, Ref as ReactRef } from 'react';
type Ref<T> = ReactRef<T> | Dispatch<SetStateAction<T | undefined>> | null;
/** Создает несколько ссылок (ref) на один DOM-элемент. */
export declare function useMultiRef<T>(refs: Array<Ref<T> | undefined>): RefCallback<T> | null;
export {};
