import type { FC } from 'react'; import { type DropdownMenuItemProps } from '../../DropdownMenu'; export type TableColumnMenuMoveRightItemProps = DropdownMenuItemProps; /** * "Move right" entry in the column header menu. Auto-suppresses when the * column cannot be reordered, is pinned, or is already last. */ export declare const TableColumnMenuMoveRightItem: FC;