/** * Hot restart Electron App. */ export declare function restart( /** * Custom hot restart behavior. */ callback?: (args: { /** * Restart the entire Electron App. */ restart: () => void; /** * Notify the Renderer-Process to reload the page when the Preload-Scripts build is complete, * instead of restarting the entire Electron App. */ reload: () => void; }) => void): import('vite').Plugin;