/** * Creates API server URLs for remote connection * * Generates WebSocket URLs for connecting to remote API servers based on * the provided remote host and available ports. * * If the remote host is not specified, it starts from 'localhost'. * It accepts both HTTP and HTTPS protocols, and generates the appropriate * WebSocket URLs based on the protocol of the remote host and known api server ports. * It also accepts WS and WSS protocols based on the remote host's protocol and returns as is. * * When the protocol is undefined (not HTTP or HTTPS), it generates both secure (wss://) * and non-secure (ws://) WebSocket URLs, with wss:// URLs listed first. */ export declare function createRemoteApiUrls(params: { remote: string | boolean; apiServerUrl: string; }): string[]; //# sourceMappingURL=createRemoteApiUrls.d.ts.map