--- Add an item to the menu
---@param text string
---@return Item
function Menu:AddItem(text)
--- Set the item focused callback
---@param callback function
---@return Item
function Item:OnFocused(callback)
--- Set the item unfocused callback
---@param callback function
---@return Item
function Item:OnUnfocused(callback)
--- Set the item selected callback
---@param callback function
---@return Item
function Item:OnSelected(callback)
--- Set the item text
---@param text string
---@return Item
function Item:SetText(text)
--- Set the item text color
---@param color hash
---@return Item
function Item:SetTextColor(color)
--- Set the item enabled or not
---@param enabled boolean
---@return Item
function Item:SetEnabled(enabled)
--- Set the item visible or not
---@param visible boolean
---@return Item
function Item:SetVisible(visible)