export declare const ClientMode: { readonly ALL: "ALL"; readonly DESTINATION: "DESTINATION"; readonly SOURCE: "SOURCE"; }; export type ClientMode = (typeof ClientMode)[keyof typeof ClientMode]; export declare const ConnectionStatus: { readonly CONNECTED: "CONNECTED"; readonly DISCONNECTED: "DISCONNECTED"; }; export type ConnectionStatus = (typeof ConnectionStatus)[keyof typeof ConnectionStatus]; export declare const TunnelStatus: { readonly CLOSED: "CLOSED"; readonly OPEN: "OPEN"; }; export type TunnelStatus = (typeof TunnelStatus)[keyof typeof TunnelStatus];