export declare enum zoneTypes { reverseProxy = 0, static = 1, } export declare class NginxZone { zoneName: string; type: zoneTypes; destination: string; configString: string; constructor(optionsArg: { zoneName: string; type: zoneTypes; destination: string; }); deploy(): void; }