/// interface Props { /** * callback function when the button is clicked */ callback: () => void; /** * Icon to be shown before hover */ icon: string; /** * text to show on the button */ title: string; } declare const HoverButton: ({ callback, icon, title }: Props) => JSX.Element; export default HoverButton;