UNPKG

@fluentui/react

Version:

Reusable React components for building web experiences.

10 lines (9 loc) 335 B
import type { KeytipDataOptions } from './KeytipData.types'; export interface IKeytipData { ariaDescribedBy: string | undefined; keytipId: string | undefined; } /** * Hook that creates attributes for components which are enabled with Keytip. */ export declare function useKeytipData(options: KeytipDataOptions): IKeytipData;