UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

5 lines (4 loc) 182 B
import { Ref } from 'react'; type PossibleRef<T> = Ref<T | null> | undefined; export declare function composeRefs<T>(...refs: PossibleRef<T>[]): (node: T | null) => void; export {};