--- Open the menu
---@return Menu
function Menu:Open()
--- Set the menu opened callback
---@param callback function
---@return Menu
function Menu:OnOpened(callback)
--- Close the menu
---@return Menu
function Menu:Close()
--- Set the menu closed callback
---@param callback function
---@return Menu
function Menu:OnClosed(callback)
--- Set the header text of the menu
---@param text string
---@return Menu
function Menu:SetHeader(text)
--- Set the subheader text of the menu
---@param text string
---@return Menu
function Menu:SetSubheader(text)
--- Set the footer text of the menu
---@param text string
---@return Menu
function Menu:SetFooter(text)
--- Set the color of the footer text
---@param color hash
---@return Menu
function Menu:SetFooterColor(color)
--- Remove an item from the menu
---@param item Item
---@return Menu
function Menu:RemoveItem(item)
--- Get an item by index
---@param index integer
---@return [Item]
function Menu:GetItem(index)
--- Get an item entry id by index
---@param index integer
---@return entryId
function Menu:GetItemEntryId(index)
--- Get all items
---@return [Item]
function Menu:GetItems()