import { type SwitchProps } from '../../Switch'; export interface TableSettingsMenuItemProps extends Omit { /** Column id from the table's column definitions. */ columnId: string; } export declare const TableSettingsMenuItem: { ({ columnId, className, "data-testid": testIdProp, ...rest }: TableSettingsMenuItemProps): import("react/jsx-runtime").JSX.Element | null; displayName: string; };