import { LOCALHOST } from "../platform/compat/constants.js"; export { LOCALHOST }; export declare const HTTP_DEFAULTS: Readonly<{ readonly PORT: 3000; readonly HOST: "localhost"; readonly PROD_HOST: "0.0.0.0"; }>; export declare const DEV_LOCALHOST_ORIGINS: readonly ["http://localhost", "http://127.0.0.1", "https://localhost", "https://127.0.0.1"]; export declare const DEV_LOCALHOST_CSP: Readonly<{ readonly WS: "ws://localhost:* wss://localhost:*"; readonly HTTP: "http://localhost"; }>; export declare const LOCALHOST_URLS: Readonly<{ readonly HTTP: "http://localhost"; readonly HTTPS: "https://localhost"; readonly HTTP_IPV4: "http://127.0.0.1"; readonly HTTPS_IPV4: "https://127.0.0.1"; }>; export declare function buildLocalhostUrl(port: number, protocol?: "http" | "https"): string; export declare function buildIpv4Url(port: number, protocol?: "http" | "https"): string; //# sourceMappingURL=network-defaults.d.ts.map