import * as React$1 from "react"; //#region src/hooks/use-focus-guard.d.ts /** Component wrapper for `useFocusGuards`. */ declare function FocusGuards(props: { children?: React$1.ReactNode; }): React$1.ReactNode; /** * Insert invisible focusable spans at the start/end of document.body. Required so * focusin/focusout fire consistently for focus-trap when the scope is portalled outside * the trap's container. */ declare function useFocusGuards(): void; //#endregion export { FocusGuards, useFocusGuards };