/** * Adds plain-language descriptions to the create, append and replace menus. * * bpmn-js ships the menus without element descriptions; this Camunda provider * injects them so the wording can be Camunda-specific and can be dropped by * simply not loading this module. */ export default class DescriptionProvider { static $inject: string[]; constructor(popupMenu: any, translate: any); getPopupMenuEntries(element: any): (entries: any) => Object; }