import { Menu, MenuItemConstructorOptions } from 'electron'; import * as t from './types'; export declare function manage(args: t.IContext & { newWindow: t.NewWindowFactory; }): { stop: () => void; sync: () => void; readonly template: MenuItemConstructorOptions[]; readonly menu: Menu; };