import React from 'react'; import type { GridCtrl } from 'ag-grid-community'; export interface TabGuardCompCallback { forceFocusOutOfContainer(up?: boolean): void; focusNextElementOutsideContainer(up: boolean, excludeElements: HTMLElement[]): boolean; } interface TabGuardProps { children: React.ReactNode; eFocusableElement: HTMLDivElement; forceFocusOutWhenTabGuardsAreEmpty?: boolean; gridCtrl: GridCtrl; onTabKeyDown: (e: KeyboardEvent) => void; isEmpty?: () => boolean; } declare const _default: React.MemoExoticComponent>>; export default _default;