import type { Protocol } from './Protocol'; export declare type Endpoint = { protocol?: Protocol; /** * The protocol transport */ transport?: string; secure?: Endpoint.secure; compressed?: Endpoint.compressed; uri?: string; msgVpn?: string; }; export declare namespace Endpoint { enum secure { YES = "yes", NO = "no" } enum compressed { YES = "yes", NO = "no" } }