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