import { type FC, type ReactNode } from 'react'; interface TableSettingsMenuContextValue { anchorNode: HTMLElement | null; setAnchorNode: (node: HTMLElement | null) => void; } /** * Holds the DOM node of the internal settings-menu anchor slot so a * consumer-rendered `` (declared in `Table` children) can * portal its trigger into the correct absolutely-positioned location. */ export declare const TableSettingsMenuProvider: FC<{ children: ReactNode; }>; export declare const useTableSettingsMenuContext: () => TableSettingsMenuContextValue; export {};