UNPKG

ag-grid-react

Version:
16 lines (15 loc) 585 B
import React from 'react'; import type { GridCtrl } from 'ag-grid-community'; export interface TabGuardCompCallback { forceFocusOutOfContainer(up?: boolean): void; } interface TabGuardProps { children: React.ReactNode; eFocusableElement: HTMLDivElement; forceFocusOutWhenTabGuardsAreEmpty?: boolean; gridCtrl: GridCtrl; onTabKeyDown: (e: KeyboardEvent) => void; isEmpty?: () => boolean; } declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<TabGuardProps & React.RefAttributes<TabGuardCompCallback>>>; export default _default;