/** * Connects to the JORVEL dev reload server (started by `jorvel dev --hmr-remotes`). * * This isn't "true" cross-app HMR. It's a pragmatic dev UX improvement: * when a remote rebuilds, the host reloads so you see changes without manually refreshing. */ export declare function connectJorvelDevReload(options?: { url?: string; onReload?: (reason?: string) => void; }): { stop(): void; } | undefined; //# sourceMappingURL=dev-reload-client.d.ts.map