UNPKG

@ark-ui/react

Version:

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

9 lines (8 loc) 380 B
import { PropTypes } from '@zag-js/react'; import { Optional } from '../../types'; import * as tooltip from '@zag-js/tooltip'; export interface UseTooltipProps extends Optional<Omit<tooltip.Props, 'dir' | 'getRootNode'>, 'id'> { } export interface UseTooltipReturn extends tooltip.Api<PropTypes> { } export declare const useTooltip: (props?: UseTooltipProps) => UseTooltipReturn;