import { NginxConfig } from "./smartnginx.classes.nginxconfig"; /** * starts nginx */ export declare let start: (configArg: NginxConfig) => void; export declare let restart: (configArg: NginxConfig) => void; /** * stops nginx */ export declare let stop: () => void; /** * checks if nginx is in path */ export declare let check: () => boolean;