4 lines
195 B
TypeScript
4 lines
195 B
TypeScript
import * as React from 'react';
|
|
import type { InternalNamePath } from '../interface';
|
|
export default function useItemRef(): (name: InternalNamePath, children: any) => React.Ref<any> | undefined;
|