import { UseMenuActionsProps } from './Navbar.types'; /** * @function * @name useMenuActions * @description custom hook that returns the actions to be the item of the menu buttons * @returns {object} - object with the actions to be the item of the menu buttons like activeButton and activeTooltip * @author: Juan David Avila Caycedo [JuanDAC] (https://github.com/JuanDAC) */ export declare const useMenuActions: ({ tooltipSetTextContent, layoutUpdate }: UseMenuActionsProps) => { activeButton: ({ path, title }: { path: string; title: string; }) => () => void; activeTooltip: (textContent?: string) => () => { payload: any; type: string; }; };