/** * Copyright (c) Paymium. * * This source code is licensed under the MIT license found in the * LICENSE file in the root of this projects source tree. */ import * as React from 'react'; import type { FocusScopeProps } from './FocusScopeProps'; type FocusScopeElement = HTMLDivElement; declare const FocusScope: React.ForwardRefExoticComponent>; export declare function useFocusScope(props: FocusScopeProps, forwardedRef: React.ForwardedRef): { ref: (node: HTMLDivElement) => void; onKeyDown: (event: React.KeyboardEvent) => void; tabIndex: number; }; export { FocusScope }; export type { FocusScopeProps }; //# sourceMappingURL=FocusScope.d.ts.map