UNPKG

@ark-ui/vue

Version:

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

7 lines (6 loc) 230 B
import { ShallowRef } from 'vue'; export interface UseFocusVisibleProps { isTextInput?: boolean; autoFocus?: boolean; } export declare function useFocusVisible(props?: UseFocusVisibleProps): Readonly<ShallowRef<boolean>>;