/** * Adds a service, either via systemd or init.d * @param {String} name the name of the service * @param {Object} options options to configure deepstream service * @param {Function} callback called when complete */ export declare const add: (name: string, options: any, callback: Function) => void; /** * Delete a service, either from systemd or init.d * @param {String} name the name of the service * @param {Function} callback called when complete */ export declare const remove: (name: string, callback: Function) => void; /** * Start a service, either from systemd or init.d * @param {String} name the name of the service * @param {Function} callback called when complete */ export declare const start: (name: string, callback: Function) => void; /** * Stop a service, either from systemd or init.d * @param {String} name the name of the service * @param {Function} callback called when complete */ export declare const stop: (name: string, callback: Function) => void; /** * Get the status of the service, either from systemd or init.d * @param {String} name the name of the service * @param {Function} callback called when complete */ export declare const status: (name: string, callback: Function) => void; /** * Restart the service, either from systemd or init.d * @param {String} name the name of the service * @param {Function} callback called when complete */ export declare const restart: (name: string, callback: Function) => void;