import { type Ref } from 'react'; import type { TableHandle } from './types'; interface TableImperativeBridgeProps { handleRef: Ref; } /** * Bridges the imperative ref forwarded to `` to context-backed * refs (`virtualizerRef`, `tbodyRef`). Mounted inside `TableProvider` so * it has access to the context; renders nothing. */ export declare const TableImperativeBridge: { ({ handleRef }: TableImperativeBridgeProps): null; displayName: string; }; export {};