import { BrowserWindow } from 'electron'; import { IContext } from './types'; export declare function create(args: IContext & { parent: BrowserWindow; title?: string; }): { window: { parent: BrowserWindow; devTools: BrowserWindow; }; };