10 lines
310 B
TypeScript
10 lines
310 B
TypeScript
export function FocusGuards(props: any): any;
|
|
/**
|
|
* Injects a pair of focus guards at the edges of the whole DOM tree
|
|
* to ensure `focusin` & `focusout` events can be caught consistently.
|
|
*/
|
|
export function useFocusGuards(): void;
|
|
export const Root: typeof FocusGuards;
|
|
|
|
//# sourceMappingURL=index.d.ts.map
|