export declare const HostType: {
    /**
     * AWS state
     */
    readonly AWS: "AWS";
};
/**
 * Host cloud the public cloud connector.
 */
export type HostType = (typeof HostType)[keyof typeof HostType];
export declare const ServiceName: {
    readonly SSH: "SSH";
    readonly WAC: "WAC";
};
/**
 * The name of the service. It is an optional property, if not provided, service configuration tokens issue code would be by passed.
 */
export type ServiceName = (typeof ServiceName)[keyof typeof ServiceName];
export declare const Type: {
    readonly Default: "default";
    readonly Custom: "custom";
};
/**
 * The type of endpoint.
 */
export type Type = (typeof Type)[keyof typeof Type];
