UNPKG

@mui/base

Version:

A library of headless ('unstyled') React UI components and low-level hooks.

19 lines (18 loc) 473 B
/// <reference types="react" /> import { FocusTrapProps } from './FocusTrap.types'; /** * Utility component that locks focus inside the component. * * Demos: * * - [Focus Trap](https://mui.com/base/react-focus-trap/) * * API: * * - [FocusTrap API](https://mui.com/base/react-focus-trap/components-api/#focus-trap) */ declare function FocusTrap(props: FocusTrapProps): JSX.Element; declare namespace FocusTrap { var propTypes: any; } export default FocusTrap;