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