12 lines
297 B
TypeScript
12 lines
297 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
|
|
interface ModalFocusScopeProps {
|
|
/**
|
|
* @type React.ReactElement
|
|
*/
|
|
children: React.ReactElement;
|
|
}
|
|
declare function ModalFocusScope(props: ModalFocusScopeProps): react_jsx_runtime.JSX.Element;
|
|
|
|
export { ModalFocusScope };
|