import { EventEmitter } from '@angular/core'; import { EditorService } from '../../services/editor/editor.service'; export declare class SubMenuEvent { index: number; value: any; } export interface SubMenu { id: string; name: string; label: string; value: string | any[]; enabled: boolean; type: string; show: boolean; } export declare class QuestionOptionSubMenuComponent { editorService: EditorService; subMenus: SubMenu[]; onChange: EventEmitter; constructor(editorService: EditorService); onMenuClick(index: any): void; onValueChange(event: any, index: any): void; }