import { type JSX, type PropsWithChildren } from 'react'; /** * Three dots menu for inline cell or column actions that is revealed on hover. * @internal */ export declare function InlineUserActionsMenu(props: PropsWithChildren<{ columnId: string; headerGroupOrRowId: string; type: 'cell' | 'header'; 'aria-label': string; 'data-header-row'?: number; 'data-column'?: number; hovered?: boolean; onClose?: () => void; }>): JSX.Element | undefined;