/** * ServerFeatures class used to maintain compatibility between different versions of client and server */ export declare class ServerFeatures { private serverFeatures; jobStatusUsesLongPolling: boolean; installProcess: boolean; useGivenJobId: boolean; internalArguments: boolean; clientMessage: boolean; /** * Default constructor */ constructor(serverFeatures: string[]); }