/**
 * @description wavy underline menu
 */
import BaseMenu from './BaseMenu';
declare class WavyUnderlineMenu extends BaseMenu {
    readonly mark = "wavyUnderline";
    readonly title: string;
    readonly iconSvg = "<svg viewBox=\"0 0 1024 1024\"><path d=\"M64 704c64-96 128-96 192 0s128 96 192 0 128-96 192 0 128 96 192 0 128-96 192 0v128c-64 96-128 96-192 0s-128-96-192 0-128 96-192 0-128-96-192 0-128 96-192 0V704z\"></path></svg>";
    readonly hotkey = "";
}
export default WavyUnderlineMenu;
