import { Logger } from '@nestjs/common';
import { ConfigService } from '../../../core/config/config.service';
export declare class LinuxService {
    private readonly configService;
    private readonly logger;
    constructor(configService: ConfigService, logger: Logger);
    restartHost(): {
        ok: boolean;
        command: string[];
    };
    shutdownHost(): {
        ok: boolean;
        command: string[];
    };
}
