import type { NetworkInterfaceInfo } from "node:os"; interface ServeUrlOptions { listenHost: string; listenPort: number; token: string; interfacesByName?: NodeJS.Dict; } export interface ServeUrls { localUrl: string; localOpenUrl: string; networkUrl?: string; networkOpenUrl?: string; } export declare function getServeUrls(options: ServeUrlOptions): ServeUrls; export {};