import { MenuItemConstructorOptions, Response, Menu } from 'electron'; import { INewDesign } from './types'; export declare enum EmojiStyle { Native = "native", Facebook30 = "facebook-3-0", Messenger10 = "messenger-1-0", Facebook22 = "facebook-2-2" } /** For example, when 'emojiStyle' setting is set to 'messenger-1-0' it replaces this URL: https://static.xx.fbcdn.net/images/emoji.php/v9/t27/2/32/1f600.png with this: https://static.xx.fbcdn.net/images/emoji.php/v9/z27/2/32/1f600.png (see here) ^ */ export declare function process(url: string): Promise; export declare function generateSubmenu(newDesign: INewDesign, updateMenu: (newDesign: INewDesign) => Promise): Promise;