import { Command } from '@oclif/core'; import type { BalenaSDK } from 'balena-sdk'; export default class DeviceStopServiceCmd extends Command { static description: string; static examples: string[]; static args: { uuid: import("@oclif/core/lib/interfaces").Arg>; service: import("@oclif/core/lib/interfaces").Arg>; }; static authenticated: boolean; run(): Promise; stopServices(balena: BalenaSDK, deviceFullUuid: string, serviceNames: string[]): Promise; }