import { ChildrenProp } from "../core/types.js";
import "../core/index.js";
import { FocusLockProps } from "./focusLock.types.js";
import { FC } from "react";
//#region src/focusLock/focusLock.d.ts
/**
 * Traps the focus within the provided content.
 *
 * Tabbing using the keyboard will only cycle through the children and won't leave the boundary of the FocusLock wrapper.
 */
declare const FocusLock: FC<FocusLockProps & ChildrenProp>;
//#endregion
export { FocusLock, FocusLock as default };

//# sourceMappingURL=focusLock.d.ts.map