import type { FC } from 'react'; import { type DropdownMenuItemProps } from '../../DropdownMenu'; export type TableColumnMenuPinItemProps = DropdownMenuItemProps; /** * Pin / unpin toggle. Renders "Pin" when the column is unpinned and "Unpin" * when it is — the same DOM node receives the consumer's `data-analytics-id` * in both states, so a single id captures both transitions. Auto-suppresses * when the column cannot be pinned (or is always-pinned). */ export declare const TableColumnMenuPinItem: FC;