import { NginxZone } from "./smartnginx.classes.nginxzone"; export declare class NginxConfig { zones: NginxZone[]; isDeployed: boolean; constructor(); addZone(zoneArg: NginxZone): void; listZones(): NginxZone[]; removeZones(zoneArg: NginxZone): void; deploy(nginxRestartArg?: boolean): void; }