import type { FC } from 'react'; import { type DropdownMenuItemProps } from '../../DropdownMenu'; export type TableColumnMenuHideItemProps = DropdownMenuItemProps; /** * "Hide" entry in the column header menu. Auto-suppresses when the column * cannot be hidden. */ export declare const TableColumnMenuHideItem: FC;