import type { Transport } from '@connectrpc/connect'; import type { GrpcWebTransportOptions } from '@connectrpc/connect-web'; declare global { var VIAM: { GRPC_TRANSPORT_FACTORY?: (opts: GrpcWebTransportOptions) => Transport; GRPC_TRACE_LOGGING?: boolean; } | undefined; } export { cloneHeaders, dialDirect, dialWebRTC, type DialOptions, type DialWebRTCOptions, type WebRTCConnection, } from './dial'; export { ConnectionClosedError } from './connection-closed-error';