/** * useMenuStore is a Pinia store definition for managing a menu with the ability to handle favorites. * * The store contains state, actions, and functionality to add or remove favorite items within a specified menu. * * @constant * @type {object} * @property {Array} menu - An array representing the menu structure. * * Actions: * - `addFavorite(item, targetMenu)`: * Adds an item to the specified menu as a favorite. Displays a warning if the item is undefined. * * - `removeFavorite(item, targetMenu)`: * Removes an item from the favorites in the specified menu. Displays a warning if the item is undefined. * * Warning messages are triggered when attempting to add or remove undefined items. */ export const useMenuStore: object; //# sourceMappingURL=menu.d.ts.map