import Argv from '../../Argv'; import { ICommand } from '../ICommand'; import { IDaemon } from '../IDaemon'; declare class DaemonCommand implements ICommand { private daemon; private name; constructor(daemon: IDaemon); setup(program: Argv): Argv; command: () => Promise; getName: () => string; } export default DaemonCommand;