import type { HeadroomConfig } from "./types.js"; export interface ProxyEndpoint { host: string; port: string; } export declare function startPersistentHeadroomProxy(config: HeadroomConfig): Promise<{ ok: true; } | { ok: false; reason: string; }>; export declare function buildProxyArgs(endpoint: ProxyEndpoint): string[]; export declare function parseLocalEndpoint(baseUrl: string): ProxyEndpoint | undefined;