ContextMenuItem: {
    active?: boolean;
    checked?: boolean;
    childMenu?: Omit<ContextMenuProps, "placement" | "id"> & {
        id?: string;
        placement?: ContextMenuPlacement;
    };
    content: ContextMenuItemContent;
    descriptionTooltip?: string;
    id?: string;
    metadata?: Record<string, any> & {
        searchable?: boolean;
        searchbarId?: string;
    };
    mustClickForChildMenu?: boolean;
    onClick?: (() => void);
    showSelectedSubItems?: boolean;
}