import { Base } from '@studiometa/js-toolkit'; import type { BaseConfig, BaseProps } from '@studiometa/js-toolkit'; /** * MenuBtn class. */ export declare class MenuBtn extends Base { /** * Config. */ static config: BaseConfig; /** * Wether the button is hovered or not. */ isHover: boolean; /** * Dispatch the mouseenter event. */ onMouseenter({ event }: { event: MouseEvent; }): void; /** * Dispatch the mouseleave event. */ onMouseleave({ event }: { event: MouseEvent; }): void; }